Struct symphonia_core::io::vlc::Codebook
source · pub struct Codebook<E: CodebookEntry> {
pub table: Vec<E>,
pub max_code_len: u32,
pub init_block_len: u32,
}
Expand description
Codebook
is a variable-length code decoding table that may be used to efficiently read
symbols from a source of bits.
Fields§
§table: Vec<E>
§max_code_len: u32
§init_block_len: u32
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<E> RefUnwindSafe for Codebook<E>where
E: RefUnwindSafe,
impl<E> Send for Codebook<E>where
E: Send,
impl<E> Sync for Codebook<E>where
E: Sync,
impl<E> Unpin for Codebook<E>where
E: Unpin,
impl<E> UnwindSafe for Codebook<E>where
E: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more