ClassifyBy

Trait ClassifyBy 

Source
pub trait ClassifyBy<Rhs> {
    type Output;

    // Required method
    fn classify_by(&self, rhs: Rhs) -> Self::Output;
}
Expand description

ClassifyBy is a trait defining the ability for an object to be classified by or with another object.

Required Associated Types§

Required Methods§

Source

fn classify_by(&self, rhs: Rhs) -> Self::Output

Implementors§