tool/core/
general.rs

1/// Display the type of the variable.
2pub fn type_of<T>(_: &T) -> String {
3    std::any::type_name::<T>().to_string()
4}