Trait inflector::Inflector [] [src]

pub trait Inflector {
    fn to_class_case(&self) -> String;
    fn is_class_case(&self) -> bool;
    fn to_camel_case(&self) -> String;
    fn is_camel_case(&self) -> bool;
    fn to_table_case(&self) -> String;
    fn is_table_case(&self) -> bool;
    fn to_snake_case(&self) -> String;
    fn is_snake_case(&self) -> bool;
    fn to_screaming_snake_case(&self) -> String;
    fn is_screaming_snake_case(&self) -> bool;
    fn to_kebab_case(&self) -> String;
    fn is_kebab_case(&self) -> bool;
    fn to_sentence_case(&self) -> String;
    fn is_sentence_case(&self) -> bool;
    fn to_title_case(&self) -> String;
    fn is_title_case(&self) -> bool;
    fn to_upper_case(&self) -> String;
    fn is_upper_case(&self) -> bool;
    fn to_lower_case(&self) -> String;
    fn is_lower_case(&self) -> bool;
    fn ordinalize(&self) -> String;
    fn deordinalize(&self) -> String;
    fn to_foreign_key(&self) -> String;
    fn is_foreign_key(&self) -> bool;
    fn demodulize(&self) -> String;
    fn deconstantize(&self) -> String;
    fn to_plural(&self) -> String;
    fn to_singular(&self) -> String;
}

Required Methods

fn to_class_case(&self) -> String

fn is_class_case(&self) -> bool

fn to_camel_case(&self) -> String

fn is_camel_case(&self) -> bool

fn to_table_case(&self) -> String

fn is_table_case(&self) -> bool

fn to_snake_case(&self) -> String

fn is_snake_case(&self) -> bool

fn to_screaming_snake_case(&self) -> String

fn is_screaming_snake_case(&self) -> bool

fn to_kebab_case(&self) -> String

fn is_kebab_case(&self) -> bool

fn to_sentence_case(&self) -> String

fn is_sentence_case(&self) -> bool

fn to_title_case(&self) -> String

fn is_title_case(&self) -> bool

fn to_upper_case(&self) -> String

fn is_upper_case(&self) -> bool

fn to_lower_case(&self) -> String

fn is_lower_case(&self) -> bool

fn ordinalize(&self) -> String

fn deordinalize(&self) -> String

fn to_foreign_key(&self) -> String

fn is_foreign_key(&self) -> bool

fn demodulize(&self) -> String

fn deconstantize(&self) -> String

fn to_plural(&self) -> String

fn to_singular(&self) -> String

Implementors