Trait lrs::ops::BitAnd

Objects that implement the binary & operator.

Syntax

trait BitAnd<RHS = Self> {
    type Output;

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

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfbitand

The method that will be called by the operator.