[][src]Struct brotli_decompressor::HuffmanTreeGroup

pub struct HuffmanTreeGroup<Alloc32: Allocator<u32>, AllocHC: Allocator<HuffmanCode>> {
    pub htrees: Alloc32::AllocatedMemory,
    pub codes: AllocHC::AllocatedMemory,
    pub alphabet_size: u16,
    pub max_symbol: u16,
    pub num_htrees: u16,
}

Fields

htrees: Alloc32::AllocatedMemorycodes: AllocHC::AllocatedMemoryalphabet_size: u16max_symbol: u16num_htrees: u16

Methods

impl<AllocU32: Allocator<u32>, AllocHC: Allocator<HuffmanCode>> HuffmanTreeGroup<AllocU32, AllocHC>[src]

pub fn init(
    &mut self,
    alloc_u32: &mut AllocU32,
    alloc_hc: &mut AllocHC,
    alphabet_size: u16,
    max_symbol: u16,
    ntrees: u16
)
[src]

Important traits for &'a mut [u8]
pub fn get_tree_mut(&mut self, index: u32) -> &mut [HuffmanCode][src]

Important traits for &'a mut [u8]
pub fn get_tree(&self, index: u32) -> &[HuffmanCode][src]

pub fn reset(&mut self, alloc_u32: &mut AllocU32, alloc_hc: &mut AllocHC)[src]

pub fn build_hgroup_cache(&self) -> [&[HuffmanCode]; 256][src]

Trait Implementations

impl<AllocU32: Allocator<u32>, AllocHC: Allocator<HuffmanCode>> Default for HuffmanTreeGroup<AllocU32, AllocHC>[src]

Auto Trait Implementations

impl<Alloc32, AllocHC> Send for HuffmanTreeGroup<Alloc32, AllocHC> where
    <Alloc32 as Allocator<u32>>::AllocatedMemory: Send,
    <AllocHC as Allocator<HuffmanCode>>::AllocatedMemory: Send

impl<Alloc32, AllocHC> Sync for HuffmanTreeGroup<Alloc32, AllocHC> where
    <Alloc32 as Allocator<u32>>::AllocatedMemory: Sync,
    <AllocHC as Allocator<HuffmanCode>>::AllocatedMemory: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]