Trait heck::CamelCase [−][src]
pub trait CamelCase: ToOwned { fn to_camel_case(&self) -> Self::Owned; }
This trait defines a camel case conversion.
In CamelCase, word boundaries are indicated by capital letters, including the first word.
Example:
extern crate heck; fn main() { use heck::CamelCase; let sentence = "We are not in the least afraid of ruins."; assert_eq!(sentence.to_camel_case(), "WeAreNotInTheLeastAfraidOfRuins"); }
Required Methods
fn to_camel_case(&self) -> Self::Owned
Convert this type to camel case.
Implementations on Foreign Types
impl CamelCase for str
[src]
impl CamelCase for str
fn to_camel_case(&self) -> String
[src]
fn to_camel_case(&self) -> String