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