type_name

Function type_name 

Source
pub fn type_name<T>(_: &T) -> String
Examples found in repository?
examples/demo.rs (line 7)
3fn main() {
4    tlog!("hello");
5
6    let n = 3;
7    tlog!("5 x 7 = {}, {}", 5 * 7, type_name(&n));
8}