Struct aws_http::content_encoding::AwsChunkedBody
source · [−]pub struct AwsChunkedBody<InnerBody> { /* private fields */ }
Expand description
A request body compatible with Content-Encoding: aws-chunked
. This implementation is only
capable of writing a single chunk and does not support signed chunks.
Chunked-Body grammar is defined in ABNF as:
Chunked-Body = *chunk
last-chunk
chunked-trailer
CRLF
chunk = chunk-size CRLF chunk-data CRLF
chunk-size = 1*HEXDIG
last-chunk = 1*("0") CRLF
chunked-trailer = *( entity-header CRLF )
entity-header = field-name ":" OWS field-value OWS
For more info on what the abbreviations mean, see https://datatracker.ietf.org/doc/html/rfc7230#section-1.2
Implementations
sourceimpl<Inner> AwsChunkedBody<Inner>
impl<Inner> AwsChunkedBody<Inner>
sourcepub fn new(body: Inner, options: AwsChunkedBodyOptions) -> Self
pub fn new(body: Inner, options: AwsChunkedBodyOptions) -> Self
Wrap the given body in an outer body compatible with Content-Encoding: aws-chunked
Trait Implementations
sourceimpl<Inner> Body for AwsChunkedBody<Inner> where
Inner: Body<Data = Bytes, Error = Error>,
impl<Inner> Body for AwsChunkedBody<Inner> where
Inner: Body<Data = Bytes, Error = Error>,
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<HeaderValue>>, Self::Error>>
fn poll_trailers(
self: Pin<&mut Self>,
_cx: &mut Context<'_>
) -> Poll<Result<Option<HeaderMap<HeaderValue>>, Self::Error>>
Poll for an optional single HeaderMap
of trailers. Read more
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 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> where
Self: Unpin,
fn data(&mut self) -> Data<'_, Self> where
Self: Unpin,
Returns future that resolves to next data chunk, if any.
sourcefn trailers(&mut self) -> Trailers<'_, Self> where
Self: Unpin,
fn trailers(&mut self) -> Trailers<'_, Self> where
Self: Unpin,
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.
sourcefn map_err<F, E>(self, f: F) -> MapErr<Self, F> where
F: FnMut(Self::Error) -> E,
fn map_err<F, E>(self, f: F) -> MapErr<Self, F> where
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: 'static + Send + Sync,
fn boxed(self) -> BoxBody<Self::Data, Self::Error> where
Self: 'static + Send + Sync,
Turn this body into a boxed trait object.
sourcefn boxed_unsync(self) -> UnsyncBoxBody<Self::Data, Self::Error> where
Self: 'static + Send,
fn boxed_unsync(self) -> UnsyncBoxBody<Self::Data, Self::Error> where
Self: 'static + Send,
Turn this body into a boxed trait object that is !Sync.
sourceimpl<InnerBody: Debug> Debug for AwsChunkedBody<InnerBody>
impl<InnerBody: Debug> Debug for AwsChunkedBody<InnerBody>
impl<'__pin, InnerBody> Unpin for AwsChunkedBody<InnerBody> where
__Origin<'__pin, InnerBody>: Unpin,
Auto Trait Implementations
impl<InnerBody> RefUnwindSafe for AwsChunkedBody<InnerBody> where
InnerBody: RefUnwindSafe,
impl<InnerBody> Send for AwsChunkedBody<InnerBody> where
InnerBody: Send,
impl<InnerBody> Sync for AwsChunkedBody<InnerBody> where
InnerBody: Sync,
impl<InnerBody> UnwindSafe for AwsChunkedBody<InnerBody> where
InnerBody: UnwindSafe,
Blanket Implementations
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>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more