Trait convert_case::Casing
source · [−]pub trait Casing {
fn to_case(&self, case: Case) -> String;
fn from_case(&self, case: Case) -> FromCasing;
}Expand description
Describes items that can be converted into a case.
Implemented for string slices &str and owned strings String.
Required Methods
fn from_case(&self, case: Case) -> FromCasing
fn from_case(&self, case: Case) -> FromCasing
Creates a FromCasing struct, which saves information about
how to parse self before converting to a case.