usestd::fmt;/// Prints anything that implements the std::fmt::Display trait.
#[inline]pubfnprint<T>(text: T)where
T:fmt::Display,
{println!("{}", text);}/// Prints anything that implements the std::fmt::Debug trait.
#[inline]pubfnprint_debug<T>(data: T)where
T:fmt::Debug,
{println!("{:?}", data);}