Enum solicit::http::session::StreamState [] [src]

pub enum StreamState {
    Idle,
    ReservedLocal,
    ReservedRemote,
    Open,
    HalfClosedRemote,
    HalfClosedLocal,
    Closed,
}

The enum represents all the states that an HTTP/2 stream can be found in.

Corresponds to section 5.1. of the spec.

Variants

Trait Implementations

impl Clone for StreamState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for StreamState
[src]

impl PartialEq for StreamState
[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 StreamState
[src]

Formats the value using the given formatter.