inflector/cases/mod.rs
1mod case;
2/// Provides conversion to and detection of class case strings.
3///
4/// This version singularizes strings.
5///
6/// Example string `ClassCase`
7pub mod classcase;
8
9/// Provides conversion to and detection of camel case strings.
10///
11/// Example string `camelCase`
12pub mod camelcase;
13
14/// Provides conversion to and detection of snake case strings.
15///
16/// Example string `snake_case`
17pub mod snakecase;
18
19/// Provides conversion to and detection of screaming snake case strings.
20///
21/// Example string `SCREAMING_SNAKE_CASE`
22pub mod screamingsnakecase;
23
24/// Provides conversion to and detection of kebab case strings.
25///
26/// Example string `kebab-case`
27pub mod kebabcase;
28
29/// Provides conversion to and detection of train case strings.
30///
31/// Example string `Train-Case`
32pub mod traincase;
33
34/// Provides conversion to and detection of sentence case strings.
35///
36/// Example string `Sentence case`
37pub mod sentencecase;
38
39/// Provides conversion to and detection of title case strings.
40///
41/// Example string `Title Case`
42pub mod titlecase;
43
44/// Provides conversion to and detection of table case strings.
45///
46/// Example string `table_cases`
47pub mod tablecase;
48
49/// Provides conversion to pascal case strings.
50///
51/// Example string `PascalCase`
52pub mod pascalcase;