pub struct CoefVlcTable {
pub n: usize,
pub max_level: usize,
pub huffcodes: &'static [u32],
pub huffbits: &'static [u8],
pub levels: &'static [u16],
}Fields§
§n: usize§max_level: usize§huffcodes: &'static [u32]§huffbits: &'static [u8]§levels: &'static [u16]Trait Implementations§
Source§impl Clone for CoefVlcTable
impl Clone for CoefVlcTable
Source§fn clone(&self) -> CoefVlcTable
fn clone(&self) -> CoefVlcTable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CoefVlcTable
Auto Trait Implementations§
impl Freeze for CoefVlcTable
impl RefUnwindSafe for CoefVlcTable
impl Send for CoefVlcTable
impl Sync for CoefVlcTable
impl Unpin for CoefVlcTable
impl UnwindSafe for CoefVlcTable
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