1use std::any; 2 3 4pub fn get_type_name_by_type<T> (_: &T) -> String { 5 any::type_name::<T>().into() 6}