pub struct FullCodebookDesc<S> {
pub code: u32,
pub bits: u8,
pub sym: S,
}
Expand description
Codebook description for (code bits, code length, code value)
triplet.
Fields§
§code: u32
Codeword bits.
bits: u8
Codeword length.
sym: S
Codeword value (symbol).
Auto Trait Implementations§
impl<S> Freeze for FullCodebookDesc<S>where
S: Freeze,
impl<S> RefUnwindSafe for FullCodebookDesc<S>where
S: RefUnwindSafe,
impl<S> Send for FullCodebookDesc<S>where
S: Send,
impl<S> Sync for FullCodebookDesc<S>where
S: Sync,
impl<S> Unpin for FullCodebookDesc<S>where
S: Unpin,
impl<S> UnwindSafe for FullCodebookDesc<S>where
S: 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