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