Trait IntoName

Source
pub trait IntoName {
    // Required method
    fn into_name(self) -> Result<Name, BadName>;
}

Required Methods§

Implementors§

Source§

impl<T> IntoName for T
where T: AsRef<str>,