pub trait Casing<T: Display> {
// Required methods
fn to_case(&self, case: Case) -> String;
fn is_case(&self, case: Case) -> bool;
}Expand description
Casing
Shared string case conversion surface retained locally so workspace crates
do not depend on canic-utils for text casing.