pub trait FiniteBitStream {
    // Required method
    fn bits_left(&self) -> u64;
}
Expand description

A FiniteBitStream is a bit stream that has a known length in bits.

Required Methods§

source

fn bits_left(&self) -> u64

Gets the number of bits left unread.

Implementors§