pub trait Pluralizable {
// Required methods
fn to_plural(&self) -> String;
fn to_singular(&self) -> String;
}
Expand description
A trait to derive plural or singular representations from
pub trait Pluralizable {
// Required methods
fn to_plural(&self) -> String;
fn to_singular(&self) -> String;
}
A trait to derive plural or singular representations from