pub trait CheckedNeg<Rhs = Self> {
    type Output;

    // Required method
    fn checked_neg(self) -> Option<Self::Output>
       where Self: Sized;
}

Required Associated Types§

Required Methods§

source

fn checked_neg(self) -> Option<Self::Output>where Self: Sized,

Implementors§