Skip to main content

Inflector

Trait Inflector 

Source
pub trait Inflector {
Show 28 methods // Required methods fn to_camel_case(&self) -> String; fn is_camel_case(&self) -> bool; fn to_pascal_case(&self) -> String; fn is_pascal_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_train_case(&self) -> String; fn is_train_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 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_class_case(&self) -> String; fn is_class_case(&self) -> bool; fn to_table_case(&self) -> String; fn is_table_case(&self) -> bool; fn to_plural(&self) -> String; fn to_singular(&self) -> String;
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Inflector for String

Source§

impl Inflector for str

Implementors§