Trait http_body_util::BodyExt
source · [−]pub trait BodyExt: Body {
fn frame(&mut self) -> Frame<'_, Self>ⓘNotable traits for Frame<'a, T>impl<'a, T: Body + Unpin + ?Sized> Future for Frame<'a, T> type Output = Option<Result<Frame<T::Data>, T::Error>>;
where
Self: Unpin,
{ ... }
fn map_frame<F, B>(self, f: F) -> MapFrame<Self, F>
where
Self: Sized,
F: FnMut(Frame<Self::Data>) -> Frame<B>,
B: Buf,
{ ... }
fn map_err<F, E>(self, f: F) -> MapErr<Self, F>
where
Self: Sized,
F: FnMut(Self::Error) -> E,
{ ... }
fn boxed(self) -> BoxBody<Self::Data, Self::Error>
where
Self: Sized + Send + Sync + 'static,
{ ... }
fn boxed_unsync(self) -> UnsyncBoxBody<Self::Data, Self::Error>
where
Self: Sized + Send + 'static,
{ ... }
fn collect(self) -> Collect<Self>ⓘNotable traits for Collect<T>impl<T: Body + ?Sized> Future for Collect<T> type Output = Result<Collected<T::Data>, T::Error>;
where
Self: Sized,
{ ... }
}
Expand description
An extension trait for http_body::Body
adding various combinators and adapters
Provided Methods
sourcefn frame(&mut self) -> Frame<'_, Self>ⓘNotable traits for Frame<'a, T>impl<'a, T: Body + Unpin + ?Sized> Future for Frame<'a, T> type Output = Option<Result<Frame<T::Data>, T::Error>>;
where
Self: Unpin,
fn frame(&mut self) -> Frame<'_, Self>ⓘNotable traits for Frame<'a, T>impl<'a, T: Body + Unpin + ?Sized> Future for Frame<'a, T> type Output = Option<Result<Frame<T::Data>, T::Error>>;
where
Self: Unpin,
Returns a future that resolves to the next Frame
, if any.
sourcefn map_frame<F, B>(self, f: F) -> MapFrame<Self, F>where
Self: Sized,
F: FnMut(Frame<Self::Data>) -> Frame<B>,
B: Buf,
fn map_frame<F, B>(self, f: F) -> MapFrame<Self, F>where
Self: Sized,
F: FnMut(Frame<Self::Data>) -> Frame<B>,
B: Buf,
Maps this body’s frame to a different kind.
sourcefn map_err<F, E>(self, f: F) -> MapErr<Self, F>where
Self: Sized,
F: FnMut(Self::Error) -> E,
fn map_err<F, E>(self, f: F) -> MapErr<Self, F>where
Self: Sized,
F: FnMut(Self::Error) -> E,
Maps this body’s error value to a different value.
sourcefn boxed(self) -> BoxBody<Self::Data, Self::Error>where
Self: Sized + Send + Sync + 'static,
fn boxed(self) -> BoxBody<Self::Data, Self::Error>where
Self: Sized + Send + Sync + 'static,
Turn this body into a boxed trait object.
sourcefn boxed_unsync(self) -> UnsyncBoxBody<Self::Data, Self::Error>where
Self: Sized + Send + 'static,
fn boxed_unsync(self) -> UnsyncBoxBody<Self::Data, Self::Error>where
Self: Sized + Send + 'static,
Turn this body into a boxed trait object that is !Sync.