Enum http_pull_parser::HttpToken [] [src]

pub enum HttpToken {
    Method(String),
    Status(u16String),
    Url(String),
    Field(StringString),
    Body(Vec<u8>),
    EndOfMessage,
}

Variants

Trait Implementations

impl Debug for HttpToken
[src]

Formats the value using the given formatter.

impl PartialEq for HttpToken
[src]

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

This method tests for !=.

impl Eq for HttpToken
[src]