Module casing

Module casing 

Source
Expand description

Case-converting utilities.

Re-exports§

pub use convert_case as case;

Enums§

Case
Defines the type of casing a string can be.

Functions§

to_alternating
Converts a string to Alternating.
to_camel
Converts a string to Camel.
to_case
Converts a string to a specified case.
to_cobol
Converts a string to Cobol.
to_constant
Converts a string to Constant.
to_flat
Converts a string to Flat.
to_kebab
Converts a string to Kebab.
to_lower
Converts a string to Lower.
to_pascal
Converts a string to Pascal.
to_sentence
Converts a string to Sentence.
to_snake
Converts a string to Snake.
to_title
Converts a string to Title.
to_toggle
Converts a string to Toggle.
to_train
Converts a string to Train.
to_upper
Converts a string to Upper.
to_upper_flat
Converts a string to UpperFlat.