Struct h2::client::ResponseFuture
source · pub struct ResponseFuture { /* private fields */ }
Expand description
A future of an HTTP response.
Implementations§
source§impl ResponseFuture
impl ResponseFuture
sourcepub fn stream_id(&self) -> StreamId
pub fn stream_id(&self) -> StreamId
Returns the stream ID of the response stream.
§Panics
If the lock on the stream store has been poisoned.
sourcepub fn push_promises(&mut self) -> PushPromises
pub fn push_promises(&mut self) -> PushPromises
Returns a stream of PushPromises
§Panics
If this method has been called before or the stream was itself was pushed
Trait Implementations§
source§impl Debug for ResponseFuture
impl Debug for ResponseFuture
source§impl Future for ResponseFuture
impl Future for ResponseFuture
Auto Trait Implementations§
impl Freeze for ResponseFuture
impl RefUnwindSafe for ResponseFuture
impl Send for ResponseFuture
impl Sync for ResponseFuture
impl Unpin for ResponseFuture
impl UnwindSafe for ResponseFuture
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
source§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more