pub trait BitShr<Rhs = Self> { type Output; // Required method fn op_shr(self, rhs: Rhs) -> Self::Output; }
The resulting type after applying the >> operator.
>>
Performs the >> operation.
assert_eq!(8u8 >> 1, 4); assert_eq!(8u8 >> 2, 2); assert_eq!(32u16 >> 3, 4);