pub struct InspectErr<B, F> {
inner: B,
f: F,
}Expand description
Body returned by the inspect_err() combinator.
Fields§
§inner: B§f: FImplementations§
Source§impl<B, F> InspectErr<B, F>
impl<B, F> InspectErr<B, F>
pub(crate) fn new(body: B, f: F) -> Self
Sourcepub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut B>
pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut B>
Get a pinned mutable reference to the inner body
Sourcepub fn into_inner(self) -> B
pub fn into_inner(self) -> B
Consume self, returning the inner body
Trait Implementations§
Source§impl<B, F> Body for InspectErr<B, F>
impl<B, F> Body for InspectErr<B, F>
Source§fn poll_frame(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Option<Result<Frame<Self::Data>, Self::Error>>>
fn poll_frame( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Option<Result<Frame<Self::Data>, Self::Error>>>
Attempt to pull out the next frame of this stream. Read more
Source§fn size_hint(&self) -> SizeHint
fn size_hint(&self) -> SizeHint
A hint that returns the bounds on the remaining length of the stream. Read more
Source§fn is_end_stream(&self) -> bool
fn is_end_stream(&self) -> bool
A hint that may return
true when the end of stream has been reached. Read moreSource§impl<B: Clone, F: Clone> Clone for InspectErr<B, F>
impl<B: Clone, F: Clone> Clone for InspectErr<B, F>
Source§fn clone(&self) -> InspectErr<B, F>
fn clone(&self) -> InspectErr<B, F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<B, F> Debug for InspectErr<B, F>where
B: Debug,
impl<B, F> Debug for InspectErr<B, F>where
B: Debug,
impl<B: Copy, F: Copy> Copy for InspectErr<B, F>
impl<'__pin, B, F> Unpin for InspectErr<B, F>where
PinnedFieldsOf<__Origin<'__pin, B, F>>: Unpin,
Auto Trait Implementations§
impl<B, F> Freeze for InspectErr<B, F>
impl<B, F> RefUnwindSafe for InspectErr<B, F>where
B: RefUnwindSafe,
F: RefUnwindSafe,
impl<B, F> Send for InspectErr<B, F>
impl<B, F> Sync for InspectErr<B, F>
impl<B, F> UnsafeUnpin for InspectErr<B, F>where
B: UnsafeUnpin,
F: UnsafeUnpin,
impl<B, F> UnwindSafe for InspectErr<B, F>where
B: UnwindSafe,
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BodyExt for T
impl<T> BodyExt for T
Source§fn frame(&mut self) -> Frame<'_, Self> ⓘwhere
Self: Unpin,
fn frame(&mut self) -> Frame<'_, Self> ⓘwhere
Self: Unpin,
Returns a future that resolves to the next
Frame, if any.Source§fn map_frame<F, B>(self, f: F) -> MapFrame<Self, F>
fn map_frame<F, B>(self, f: F) -> MapFrame<Self, F>
Maps this body’s frame to a different kind.
Source§fn inspect_frame<F>(self, f: F) -> InspectFrame<Self, F>
fn inspect_frame<F>(self, f: F) -> InspectFrame<Self, F>
A body that calls a function with a reference to each frame before yielding it.
Source§fn map_err<F, E>(self, f: F) -> MapErr<Self, F>
fn map_err<F, E>(self, f: F) -> MapErr<Self, F>
Maps this body’s error value to a different value.
Source§fn inspect_err<F>(self, f: F) -> InspectErr<Self, F>
fn inspect_err<F>(self, f: F) -> InspectErr<Self, F>
A body that calls a function with a reference to an error before yielding it.
Source§fn boxed_unsync(self) -> UnsyncBoxBody<Self::Data, Self::Error>
fn boxed_unsync(self) -> UnsyncBoxBody<Self::Data, Self::Error>
Turn this body into a boxed trait object that is !Sync.
Source§fn collect(self) -> Collect<Self> ⓘwhere
Self: Sized,
fn collect(self) -> Collect<Self> ⓘwhere
Self: Sized,
Turn this body into
Collected body which will collect all the DATA frames
and trailers.Source§fn with_trailers<F>(self, trailers: F) -> WithTrailers<Self, F>
fn with_trailers<F>(self, trailers: F) -> WithTrailers<Self, F>
Add trailers to the body. Read more
Source§fn into_stream(self) -> BodyStream<Self>where
Self: Sized,
fn into_stream(self) -> BodyStream<Self>where
Self: Sized,
Turn this body into
BodyStream.Source§fn into_data_stream(self) -> BodyDataStream<Self>where
Self: Sized,
fn into_data_stream(self) -> BodyDataStream<Self>where
Self: Sized,
Turn this body into
BodyDataStream.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