rboot 0.1.2

bootstrap the rust development
Documentation
1
2
3
4
5
6
7
pub fn print_type_of<T>(_: &T) {
    debug!("{}", std::any::type_name::<T>())
}

pub fn retrieve_type_of<T>(_: &T) -> &str {
    std::any::type_name::<T>()
}