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