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::AllocatedMemory§codes: AllocHC::AllocatedMemory§alphabet_size: u16§max_symbol: u16§num_htrees: u16

Implementations§

source§

impl<AllocU32: Allocator<u32>, AllocHC: Allocator<HuffmanCode>> HuffmanTreeGroup<AllocU32, AllocHC>

source

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

source

pub fn get_tree_mut(&mut self, index: u32) -> &mut [HuffmanCode]

source

pub fn get_tree(&self, index: u32) -> &[HuffmanCode]

source

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

source

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

Trait Implementations§

source§

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

source§

fn default() -> Self

Returns the “default value” for a type. Read more

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§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.