usecrate::ops::Len;/// BitReader source. Lazy underflow state management. 8 byte padded (undefined).
pubtraitBitSrc: Len {/// Pops bytes, as little-endian `usize` packed to the right with any unused bytes undefined.
/// Usage before initialization undefined not unsafe.
////// `n_bytes < size_of::<usize>()`
unsafefnpop_bytes(&mutself, n_bytes:usize)->usize;/// Initialize and pop `size_of::<usize> - 1` bytes with unused bytes set to zero.
fninit_1(&mutself)->usize;/// Initialize and pop `size_of::<usize>` bytes.
fninit_0(&mutself)->usize;}