Enum nahpack::HpackDecodeError [] [src]

#[repr(C)]
pub enum HpackDecodeError { InsufficientData, InvalidIndex, InvalidInteger, ExcessiveInteger, InvalidCompressedLiteral, IllegalEOS, SettingsSizeExceeded, }

HPACK decoding error states are detailed here.

Variants

The header block ends prematurely.

There was reference to an indexed header that is not in the table.

An integer could not be decoded.

This library's limit of an integer being at most 4 bytes was exceeded.

The compressed literal could not be decoded.

EOS symbol was unexpectedly found in a compressed literal.

Header block gave a value for table resize that exceeds the value set by a settings frame.

Trait Implementations

impl Debug for HpackDecodeError
[src]

Formats the value using the given formatter.

impl PartialEq for HpackDecodeError
[src]

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

This method tests for !=.