Trait string_morph::Morph [] [src]

pub trait Morph {
    fn to_snake_case(&self) -> String;
    fn to_snake_caps_case(&self) -> String;
    fn to_kebab_case(&self) -> String;
    fn to_camel_case(&self) -> String;
    fn to_pascal_case(&self) -> String;
    fn to_sentence_case(&self) -> String;
    fn to_title_case(&self) -> String;
    fn to_upper_first(&self) -> String;
}

Required Methods

Implementors