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