Type Alias hyper::client::conn::Http1Dispatcher

source ·
type Http1Dispatcher<T, B> = Dispatcher<Client<B>, B, T, Client>;

Aliased Type§

struct Http1Dispatcher<T, B> {
    conn: Conn<T, <B as Body>::Data, Client>,
    dispatch: Client<B>,
    body_tx: Option<Sender>,
    body_rx: Pin<Box<Option<B>>>,
    is_closing: bool,
}

Fields§

§conn: Conn<T, <B as Body>::Data, Client>§dispatch: Client<B>§body_tx: Option<Sender>§body_rx: Pin<Box<Option<B>>>§is_closing: bool