pub trait Casing<T: Display> { // Required methods fn to_case(&self, case: Case) -> String; fn is_case(&self, case: Case) -> bool; }