pub trait ContainerRead<B> where
    B: BitAccess
{ type Slot: Number; fn get_slot(&self, idx: usize) -> Self::Slot; fn slots_count(&self) -> usize; fn bits_count(&self) -> usize { ... } }

Required Associated Types

Required Methods

Gets value of stored slot.

Gets number of stored slots.

Provided Methods

Gets max number of bits.

Implementations on Foreign Types

Implementors