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

Wrap the given body in an outer body compatible with Content-Encoding: aws-chunked

Trait Implementations

Values yielded by the Body.

The error type this Body might generate.

Attempt to pull out the next data buffer of this stream.

Poll for an optional single HeaderMap of trailers. Read more

Returns true when the end of stream has been reached. Read more

Returns the bounds on the remaining length of the stream. Read more

Returns future that resolves to next data chunk, if any.

Returns future that resolves to trailers, if any.

Maps this body’s data value to a different value.

Maps this body’s error value to a different value.

Turn this body into a boxed trait object.

Turn this body into a boxed trait object that is !Sync.

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more