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)
fn shr_assign(&mut self, rhs: Rhs)
Performs the >>=
operation.