simple_task/
utils.rs

1
2pub mod lang {
3    pub fn type_name_of<T>(_: T) -> &'static str {
4        std::any::type_name::<T>()
5    }
6}