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.
pub trait FiniteBitStream {
// Required method
fn bits_left(&self) -> u64;
}A FiniteBitStream is a bit stream that has a known length in bits.