Enum hpack::huffman::HuffmanDecoderError[][src]

pub enum HuffmanDecoderError {
    PaddingTooLarge,
    InvalidPadding,
    EOSInString,
}

Represents the error variants that the HuffmanDecoder can return.

Variants

Any padding strictly larger than 7 bits MUST be interpreted as an error

Any padding that does not correspond to the most significant bits of EOS MUST be interpreted as an error.

If EOS is ever found in the string, it causes an error.

Trait Implementations

impl PartialEq for HuffmanDecoderError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Copy for HuffmanDecoderError
[src]

impl Clone for HuffmanDecoderError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HuffmanDecoderError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for HuffmanDecoderError

impl Sync for HuffmanDecoderError