pub trait Comparable {
    // Required method
    fn is_comparable_to(&self, rhs: &Self) -> bool;
}

Required Methods§

source

fn is_comparable_to(&self, rhs: &Self) -> bool

Implementors§