[][src]Trait bit_vec::BitBlock

pub trait BitBlock: Copy + Add<Self, Output = Self> + Sub<Self, Output = Self> + Shl<usize, Output = Self> + Shr<usize, Output = Self> + Not<Output = Self> + BitAnd<Self, Output = Self> + BitOr<Self, Output = Self> + BitXor<Self, Output = Self> + Rem<Self, Output = Self> + Eq + Ord + Hash {
    fn bits() -> usize;
fn from_byte(byte: u8) -> Self;
fn count_ones(self) -> usize;
fn zero() -> Self;
fn one() -> Self; fn bytes() -> usize { ... } }

Abstracts over a pile of bits (basically unsigned primitives)

Required methods

fn bits() -> usize

How many bits it has

fn from_byte(byte: u8) -> Self

Convert a byte into this type (lowest-order bits set)

fn count_ones(self) -> usize

Count the number of 1's in the bitwise repr

fn zero() -> Self

Get 0

fn one() -> Self

Get 1

Loading content...

Provided methods

fn bytes() -> usize

How many bytes it has

Loading content...

Implementations on Foreign Types

impl BitBlock for u8[src]

fn bytes() -> usize[src]

impl BitBlock for u16[src]

fn bytes() -> usize[src]

impl BitBlock for u32[src]

fn bytes() -> usize[src]

impl BitBlock for u64[src]

fn bytes() -> usize[src]

impl BitBlock for usize[src]

fn bytes() -> usize[src]

Loading content...

Implementors

Loading content...