pub trait Classify { type Output; // Required method fn classify(&self) -> Self::Output; }
Classify defines an interface for objects capable of being classified as other types.
Classify