Trait lrs::ops::Shl

Objects that implement the binary << operator.

Syntax

trait Shl<RHS> {
    type Output;

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

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfshl

The method that will be called by the operator.