pub trait EqualThousand<T> {
    // Required method
    fn eq_under_thousand(&self, thousand: T) -> bool;
}

Required Methods§

source

fn eq_under_thousand(&self, thousand: T) -> bool

Implementors§