pub trait StringExt {
// Required methods
fn to_upper_camel(&self) -> String;
fn to_lower_camel(&self) -> String;
}
pub trait StringExt {
// Required methods
fn to_upper_camel(&self) -> String;
fn to_lower_camel(&self) -> String;
}