Classify

Trait Classify 

Source
pub trait Classify {
    type Output;

    // Required method
    fn classify(&self) -> Self::Output;
}
Expand description

Classify defines an interface for objects capable of being classified as other types.

Required Associated Types§

Required Methods§

Source

fn classify(&self) -> Self::Output

Implementors§