pub trait ToLowerCamelCase: ToOwned {
    // Required method
    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§

source

fn to_lower_camel_case(&self) -> Self::Owned

Convert this type to lower camel case.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ToLowerCamelCase for str

Implementors§