Trait reproto::naming::FromNaming [] [src]

pub trait FromNaming {
    fn to_lower_camel(&self) -> Box<Naming>;
    fn to_upper_camel(&self) -> Box<Naming>;
    fn to_lower_snake(&self) -> Box<Naming>;
    fn to_upper_snake(&self) -> Box<Naming>;
}

Required Methods

Implementors