0 / 60 seg.

In this function. what level of access is provided to the variable a?

use std::fmt::Debug;
fn report<T:Debug>(a: &T) {
    eprintln!("info: {:?}", a);
}