Trait heck::ToLowerCamelCase[][src]

pub trait ToLowerCamelCase: ToOwned {
    fn to_lower_camel_case(&self) -> Self::Owned;
}
Expand description

This trait defines a lower camel case conversion.

In lowerCamelCase, word boundaries are indicated by capital letters, excepting the first word.

Example:

use heck::ToLowerCamelCase;

let sentence = "It is we who built these palaces and cities.";
assert_eq!(sentence.to_lower_camel_case(), "itIsWeWhoBuiltThesePalacesAndCities");

Required methods

Convert this type to lower camel case.

Implementations on Foreign Types

Implementors