pub struct BoxBody { /* private fields */ }
Expand description
A type erased http body.
Implementations
sourceimpl BoxBody
impl BoxBody
sourcepub fn new<B>(inner: B) -> Self where
B: Body<Data = Bytes, Error = Status> + Send + Sync + 'static,
pub fn new<B>(inner: B) -> Self where
B: Body<Data = Bytes, Error = Status> + Send + Sync + 'static,
Create a new BoxBody
mapping item and error to the default types.
Trait Implementations
sourceimpl Body for BoxBody
impl Body for BoxBody
sourcefn is_end_stream(&self) -> bool
fn is_end_stream(&self) -> bool
Returns true
when the end of stream has been reached. Read more
sourcefn poll_data(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Option<Result<Self::Data, Self::Error>>>
fn poll_data(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Option<Result<Self::Data, Self::Error>>>
Attempt to pull out the next data buffer of this stream.
sourcefn poll_trailers(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<Option<HeaderMap>, Self::Error>>
fn poll_trailers(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<Option<HeaderMap>, Self::Error>>
Poll for an optional single HeaderMap
of trailers. Read more
sourcefn size_hint(&self) -> SizeHint
fn size_hint(&self) -> SizeHint
Returns the bounds on the remaining length of the stream. Read more
sourcefn data(&mut self) -> Data<'_, Self>ⓘNotable traits for Data<'a, T>impl<'a, T> Future for Data<'a, T> where
T: Body + Unpin + ?Sized, type Output = Option<Result<<T as Body>::Data, <T as Body>::Error>>;
where
Self: Unpin,
fn data(&mut self) -> Data<'_, Self>ⓘNotable traits for Data<'a, T>impl<'a, T> Future for Data<'a, T> where
T: Body + Unpin + ?Sized, type Output = Option<Result<<T as Body>::Data, <T as Body>::Error>>;
where
Self: Unpin,
T: Body + Unpin + ?Sized, type Output = Option<Result<<T as Body>::Data, <T as Body>::Error>>;
Returns future that resolves to next data chunk, if any.
sourcefn trailers(&mut self) -> Trailers<'_, Self>ⓘNotable traits for Trailers<'a, T>impl<'a, T> Future for Trailers<'a, T> where
T: Body + Unpin + ?Sized, type Output = Result<Option<HeaderMap<HeaderValue>>, <T as Body>::Error>;
where
Self: Unpin,
fn trailers(&mut self) -> Trailers<'_, Self>ⓘNotable traits for Trailers<'a, T>impl<'a, T> Future for Trailers<'a, T> where
T: Body + Unpin + ?Sized, type Output = Result<Option<HeaderMap<HeaderValue>>, <T as Body>::Error>;
where
Self: Unpin,
T: Body + Unpin + ?Sized, type Output = Result<Option<HeaderMap<HeaderValue>>, <T as Body>::Error>;
Returns future that resolves to trailers, if any.
sourcefn map_data<F, B>(self, f: F) -> MapData<Self, F> where
F: FnMut(Self::Data) -> B,
B: Buf,
fn map_data<F, B>(self, f: F) -> MapData<Self, F> where
F: FnMut(Self::Data) -> B,
B: Buf,
Maps this body’s data value to a different value.
Auto Trait Implementations
impl !RefUnwindSafe for BoxBody
impl Send for BoxBody
impl Sync for BoxBody
impl Unpin for BoxBody
impl !UnwindSafe for BoxBody
Blanket Implementations
sourceimpl<T> Body for T where
T: 'static + Body + Send + Sync,
<T as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
impl<T> Body for T where
T: 'static + Body + Send + Sync,
<T as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more