pub trait BitwisePartial<Rhs = bool> {
type Output;
// Required methods
fn and_partial(self, start: u8, len: u8, rhs: Rhs) -> Self::Output;
fn or_partial(self, start: u8, len: u8, rhs: Rhs) -> Self::Output;
fn xor_partial(self, start: u8, len: u8, rhs: Rhs) -> Self::Output;
}Expand description
Bitwise & (and), | (or) and ^ (xor) operations on a
subset of the bits of self.