[][src]Struct brotli::writer::HuffmanTreeGroup

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

Fields

htrees: <Alloc32 as Allocator<u32>>::AllocatedMemorycodes: <AllocHC as Allocator<HuffmanCode>>::AllocatedMemoryalphabet_size: u16max_symbol: u16num_htrees: u16

Methods

impl<AllocU32, AllocHC> HuffmanTreeGroup<AllocU32, AllocHC> where
    AllocHC: Allocator<HuffmanCode>,
    AllocU32: Allocator<u32>, 
[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 &'_ mut [u8]
pub fn get_tree_mut(&mut self, index: u32) -> &mut [HuffmanCode][src]

Important traits for &'_ 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, AllocHC> Default for HuffmanTreeGroup<AllocU32, AllocHC> where
    AllocHC: Allocator<HuffmanCode>,
    AllocU32: Allocator<u32>, 
[src]

Auto Trait Implementations

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

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

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

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

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.