Struct hyper::http::h1::Incoming[][src]

pub struct Incoming<S> {
    pub version: HttpVersion,
    pub subject: S,
    pub headers: Headers,
}

An Incoming Message head. Includes request/status line, and headers.

Fields

HTTP version of the message.

Subject (request line or status line) of Incoming message.

Headers of the Incoming message.

Trait Implementations

impl<S: Debug> Debug for Incoming<S>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<S> Send for Incoming<S> where
    S: Send

impl<S> !Sync for Incoming<S>