pub trait Casing {
    fn to_case(&self, case: Case) -> String;
fn from_case(&self, case: Case) -> FromCasing; }
Expand description

Describes items that can be converted into a case.

Implemented for string slices &str and owned strings String.

Required methods

References self and converts to the given case.

Creates a FromCasing struct, which saves information about how to parse self before converting to a case.

Implementations on Foreign Types

Implementors