[−][src]Trait solicit::http::connection::ReceiveFrame
A trait that should be implemented by types that can provide the functionality of receiving HTTP/2 frames.
Required Methods
fn recv_frame(&mut self) -> HttpResult<HttpFrame>
Return a new HttpFrame instance. Unknown frames can be wrapped in the
HttpFrame::UnknownFrame variant (i.e. their RawFrame representation).
Implementors
impl<TS> ReceiveFrame for TS where
TS: TransportStream, [src]
impl<TS> ReceiveFrame for TS where
TS: TransportStream, A blanket implementation of the trait for TransportStreams.
fn recv_frame(&mut self) -> HttpResult<HttpFrame>[src]
fn recv_frame(&mut self) -> HttpResult<HttpFrame>