Trait lrs::ops::BitOr

Objects that implement the binary | operator.

Syntax

trait BitOr<RHS = Self> {
    type Output;

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

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfbitor

The method that will be called by the operator.