Objects that implement the binary >> operator.
trait Shr<RHS> {
type Output;
/* Required methods */
fn shr(self, rhs: RHS) -> <Self as Shr<RHS>>::Output
}| Name | Description |
|---|---|
| Output | The output of the operator. |
| Receiver | Name | Description |
|---|---|---|
self | shr | The method that will be called by the operator. |