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.
pub trait ClassifyBy<Rhs> {
type Output;
// Required method
fn classify_by(&self, rhs: Rhs) -> Self::Output;
}ClassifyBy is a trait defining the ability for an object to be classified by or with
another object.