Trait deepmesa_collections::bitvec::traits::BitwisePartial[][src]

pub trait BitwisePartial<Rhs = bool> {
    type Output;
    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.

Associated Types

Required methods

Implementations on Foreign Types

Implementors