Trait Convention

Source
pub trait Convention {
    // Required methods
    fn to(&self, string: &str) -> Result<String, Error>;
    fn is(&self, string: &str) -> Result<bool, Error>;
}

Required Methods§

Source

fn to(&self, string: &str) -> Result<String, Error>

Source

fn is(&self, string: &str) -> Result<bool, Error>

Implementors§