1 2 3 4 5 6
// -- type_of.rs -- #[allow(unused)] pub fn type_of<T>(_: &T) -> String { format!("{}", std::any::type_name::<T>()) }