Trait lrs::ops::Shr

Objects that implement the binary >> operator.

Syntax

trait Shr<RHS> {
    type Output;

    /* Required methods */
    fn shr(self, rhs: RHS) -> <Self as Shr<RHS>>::Output
}

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfshr

The method that will be called by the operator.