forked from AbleOS/ableos
9 lines
110 B
Rust
9 lines
110 B
Rust
|
//! Small generic utilities
|
||
|
//!
|
||
|
//!
|
||
|
//!
|
||
|
|
||
|
pub fn type_of<T>(_: &T) -> &str {
|
||
|
core::any::type_name::<T>()
|
||
|
}
|