pub trait MakeMin: PartialOrd + Sized {
    // Provided method
    fn make_min(&mut self, other: Self) -> bool { ... }
}

Provided Methods§

source

fn make_min(&mut self, other: Self) -> bool

Implementors§