Trait veilid_tools::CmpAssign

source ·
pub trait CmpAssign {
    // Required methods
    fn min_assign(&mut self, other: Self);
    fn max_assign(&mut self, other: Self);
}

Required Methods§

source

fn min_assign(&mut self, other: Self)

source

fn max_assign(&mut self, other: Self)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> CmpAssign for T
where T: Ord,