tstr

Macro tstr 

Source
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");