pub trait Tks {
// Required methods
fn base(&self) -> BaseKind;
fn sub(&self) -> Option<CamelCase>;
fn specific(&self) -> Option<Specific>;
fn matches(&self, tks: &dyn Tks) -> bool;
}Expand description
Stands for “Type, Kind, Specific”