Trait heck::ToPascalCase[][src]

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

ToPascalCase is an alias for ToUpperCamelCase. See ToUpperCamelCase for more documentation.

Required methods

Convert this type to upper camel case.

Implementors