Trait heck::MixedCase [−][src]
This trait defines a mixed case conversion.
In mixedCase, word boundaries are indicated by capital letters, excepting the first word.
Example:
use heck::MixedCase; let sentence = "It is we who built these palaces and cities."; assert_eq!(sentence.to_mixed_case(), "itIsWeWhoBuiltThesePalacesAndCities");
Required methods
fn to_mixed_case(&self) -> Self::Owned
[src]
Convert this type to mixed case.