pub trait CheckedAddInner: Sized {
    type Inner;

    fn checked_add_inner(&self, other: &Self::Inner) -> Option<Self>;
}

Required Associated Types§

Required Methods§

Implementors§