Expand description

Provides case inflections

  • Camel case
  • Class case
  • Kebab case
  • Train case
  • Screaming snake case
  • Table case
  • Sentence case
  • Snake case
  • Pascal case

Re-exports

pub use class::is_class_case;
pub use class::to_class_case;
pub use camel::is_camel_case;
pub use camel::to_camel_case;
pub use snake::is_snake_case;
pub use snake::to_snake_case;
pub use screaming_snake::is_screaming_snake_case;
pub use screaming_snake::to_screaming_snake_case;
pub use kebab::is_kebab_case;
pub use kebab::to_kebab_case;
pub use train::is_train_case;
pub use train::to_train_case;
pub use sentence::is_sentence_case;
pub use sentence::to_sentence_case;
pub use title::is_title_case;
pub use title::to_title_case;
pub use table::is_table_case;
pub use table::to_table_case;
pub use pascal::is_pascal_case;
pub use pascal::to_pascal_case;

Modules

Provides conversion to and detection of camel case strings.
Provides conversion to and detection of class case strings.
Provides conversion to and detection of kebab case strings.
Provides conversion to pascal case strings.
Provides conversion to and detection of screaming snake case strings.
Provides conversion to and detection of sentence case strings.
Provides conversion to and detection of snake case strings.
Provides conversion to and detection of table case strings.
Provides conversion to and detection of title case strings.
Provides conversion to and detection of train case strings.