Skip to main content

ToPascalCase

Trait ToPascalCase 

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

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

Required Methods§

Source

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

Convert this type to upper camel case.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§