Trait ToStaticStr

Source
pub trait ToStaticStr {
    // Required method
    fn to_static_str(&self) -> &'static str;
}

Required Methods§

Source

fn to_static_str(&self) -> &'static str

Implementors§

Source§

impl<T: AsRef<str>> ToStaticStr for T