macro_rules! tstr {
( $($tt:tt)* ) => { ... };
}Expand description
Generates C-like terminated string with the type of crate::types::TStr
assert_eq!(tstr!("123").as_str(), "123");macro_rules! tstr {
( $($tt:tt)* ) => { ... };
}Generates C-like terminated string with the type of crate::types::TStr
assert_eq!(tstr!("123").as_str(), "123");