pub trait ShrAssign<Rhs = Self> {
// Required method
fn shr_assign(&mut self, rhs: Rhs);
}Expand description
The right shift assignment operator >>=.
§Examples
An implementation of ShrAssign for a wrapper around usize.
Required Methods§
1.8.0 · Sourcefn shr_assign(&mut self, rhs: Rhs)
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
fn shr_assign(&mut self, rhs: Rhs)
Performs the >>= operation.