Struct http_body_util::Full
source · [−]pub struct Full<D> { /* private fields */ }
Expand description
A body that consists of a single chunk.
Implementations
Trait Implementations
sourceimpl<D> Body for Full<D>where
D: Buf,
impl<D> Body for Full<D>where
D: Buf,
type Data = D
type Data = D
Values yielded by the
Body
.type Error = Infallible
type Error = Infallible
The error type this
Body
might generate.sourcefn poll_frame(
self: Pin<&mut Self>,
_cx: &mut Context<'_>
) -> Poll<Option<Result<Frame<D>, Self::Error>>>
fn poll_frame(
self: Pin<&mut Self>,
_cx: &mut Context<'_>
) -> Poll<Option<Result<Frame<D>, Self::Error>>>
Attempt to pull out the next data buffer of this stream.
sourcefn is_end_stream(&self) -> bool
fn is_end_stream(&self) -> bool
Returns
true
when the end of stream has been reached. Read moresourceimpl<D, B> From<Cow<'static, B>> for Full<D>where
D: Buf + From<&'static B> + From<B::Owned>,
B: ToOwned + ?Sized,
impl<D, B> From<Cow<'static, B>> for Full<D>where
D: Buf + From<&'static B> + From<B::Owned>,
B: ToOwned + ?Sized,
impl<D: Copy> Copy for Full<D>
impl<'__pin, D> Unpin for Full<D>where
__Origin<'__pin, D>: Unpin,
Auto Trait Implementations
impl<D> RefUnwindSafe for Full<D>where
D: RefUnwindSafe,
impl<D> Send for Full<D>where
D: Send,
impl<D> Sync for Full<D>where
D: Sync,
impl<D> UnwindSafe for Full<D>where
D: UnwindSafe,
Blanket Implementations
sourceimpl<T> BodyExt for Twhere
T: Body + ?Sized,
impl<T> BodyExt for Twhere
T: Body + ?Sized,
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.
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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