Something is ok (cleanup)

This commit is contained in:
Ara Sadoyan
2025-02-08 19:40:14 +01:00
parent 79d952d30e
commit 5b65a6dc4e
4 changed files with 10 additions and 7 deletions

7
src/utils/tools.rs Normal file
View File

@@ -0,0 +1,7 @@
use std::any::type_name;
#[allow(dead_code)]
pub fn typeoff<T>(_: T) {
let to = type_name::<T>();
println!("{:?}", to);
}