Utility Functions

Display Variable Type

#![allow(unused)]
fn main() {
fn print_type_of<T>(_: &T) {
    println!("{}", std::any::type_name::<T>())
}
}