hyper::proto::h1::dispatch

Type Alias ClientRx

Source
type ClientRx<B> = Receiver<Request<B>, Response<Incoming>>;

Aliased Type§

struct ClientRx<B> {
    inner: UnboundedReceiver<Envelope<Request<B>, Response<Incoming>>>,
    taker: Taker,
}

Fields§

§inner: UnboundedReceiver<Envelope<Request<B>, Response<Incoming>>>§taker: Taker

Implementations

Source§

impl<T, U> Receiver<T, U>

Source

pub(crate) fn poll_recv( &mut self, cx: &mut Context<'_>, ) -> Poll<Option<(T, Callback<T, U>)>>

Source

pub(crate) fn close(&mut self)

Source

pub(crate) fn try_recv(&mut self) -> Option<(T, Callback<T, U>)>

Trait Implementations

Source§

impl<T, U> Drop for Receiver<T, U>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more