pub trait SaturatingSub<Rhs = Self> {
    fn saturating_sub(self, rhs: Rhs) -> Self;
}

Required Methods§

Implementors§