//! Small generic utilities //! //! //! pub fn type_of(_: &T) -> &str { core::any::type_name::() } #[cfg(test)] mod tests { use super::*; // #[test] fn test_type_of() { assert_eq!(type_of(&1), "i32"); } }