pub trait CheckedAddInto {
    type Output;

    fn checked_add_into(&self, other: &Self) -> Option<Self::Output>;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§