pub trait OverflowingShl<Rhs = Self>where
    Self: Sized,
{ fn overflowing_shl(self, rhs: Rhs) -> (Self, bool); }

Required Methods§

Implementors§