Enum httpbis::solicit::frame::ParseFrameError[][src]

pub enum ParseFrameError {
    InternalError,
    BufMustBeAtLeast9Bytes(usize),
    IncorrectPayloadLen,
    StreamIdMustBeNonZero,
    StreamIdMustBeZero(u32),
    StreamDependencyOnItself(u32),
    IncorrectFrameLength(u32),
    IncorrectFlags(u8),
    IncorrectSettingsPushValue(u32),
    IncorrectSettingsMaxFrameSize(u32),
    WindowSizeTooLarge(u32),
    WindowUpdateIncrementInvalid(u32),
    ProtocolError,
}

Variants

Trait Implementations

impl Debug for ParseFrameError
[src]

Formats the value using the given formatter. Read more

impl From<ParseFrameError> for Error
[src]

Performs the conversion.

Auto Trait Implementations