pub enum ReadHuffmanTree<E: Endianness, T: Clone> {
    Done(T, u8u32PhantomData<E>),
    Continue(Box<[ReadHuffmanTree<E, T>]>),
    InvalidState,
}
Expand description

A compiled Huffman tree element for use with the read_huffman method. Returned by compile_read_tree.

Compiled read trees are optimized for faster lookup and are therefore endian-specific.

In addition, each symbol in the source tree may occur many times in the compiled tree. If symbols require a nontrivial amount of space, consider using reference counting so that they may be cloned more efficiently.

Variants

Done(T, u8u32PhantomData<E>)

The final value and new reader state

Continue(Box<[ReadHuffmanTree<E, T>]>)

Another byte is necessary to determine final value

InvalidState

An invalid reader state has been used

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.