Trait BitOr
Source pub trait BitOr<Rhs = Self> {
type Output;
// Required method
fn op_bitor(self, rhs: Rhs) -> Self::Output;
}
The resulting type after applying the |
operator.
Performs the |
operation.
§Examples
assert_eq!(true | false, true);
assert_eq!(false | false, false);
assert_eq!(5u8 | 1u8, 5);
assert_eq!(5u8 | 2u8, 7);