Enum sozu_lib::parser::http11::RequestState [] [src]

pub enum RequestState {
    Initial,
    Error(ErrorState),
    HasRequestLine(RRequestLineConnection),
    HasHost(RRequestLineConnectionHost),
    HasLength(RRequestLineConnectionLengthInformation),
    HasHostAndLength(RRequestLineConnectionHostLengthInformation),
    Request(RRequestLineConnectionHost),
    RequestWithBody(RRequestLineConnectionHostusize),
    RequestWithBodyChunks(RRequestLineConnectionHostChunk),
}

Variants

Methods

impl RequestState
[src]

Trait Implementations

impl Debug for RequestState
[src]

Formats the value using the given formatter.

impl Clone for RequestState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RequestState
[src]

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

This method tests for !=.