Enum http_box::http1::ParserError [] [src]

pub enum ParserError {
    ChunkExtensionName(u8),
    ChunkExtensionValue(u8),
    ChunkLength(u8),
    CrlfSequence(u8),
    Dead,
    HeaderName(u8),
    HeaderValue(u8),
    MaxChunkLength,
    Method(u8),
    Multipart(u8),
    MultipartBoundary(u8),
    Status(u8),
    StatusCode(u8),
    Url(u8),
    UrlEncodedName(u8),
    UrlEncodedValue(u8),
    Version(u8),
}

Parser error messages.

Variants

Invalid chunk extension name on byte u8.

Invalid chunk extension value on byte u8.

Invalid chunk length on byte u8.

Invalid CRLF sequence on byte u8.

Parsing has failed.

Invalid header name on byte u8.

Invalid header value on byte u8.

Maximum chunk length has been met.

Invalid request method on byte u8.

Invalid multipart data.

Invalid multipart boundary.

Invalid status on byte u8.

Invalid status code on byte u8.

Invalid URL character on byte u8.

Invalid URL encoded name on byte u8.

Invalid URL encoded value on byte u8.

Invalid HTTP version on byte u8.

Trait Implementations

impl Clone for ParserError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ParserError
[src]

impl PartialEq for ParserError
[src]

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

This method tests for !=.

impl Debug for ParserError
[src]

Formats the value using the given formatter.

impl Display for ParserError
[src]

Formats the value using the given formatter. Read more