Struct httpcodec::BodyEncoder [] [src]

pub struct BodyEncoder<E>(_);

Basic HTTP body encoder.

It is typically used for making a body encoder from a Encode implementor.

If E::requiring_bytes() returns ByteCount::Unknown, the chunked body transfer encoding will be used.

Methods

impl<E> BodyEncoder<E>
[src]

[src]

Makes a new BodyEncoder instance.

Trait Implementations

impl<E: Debug> Debug for BodyEncoder<E>
[src]

[src]

Formats the value using the given formatter. Read more

impl<E: Default> Default for BodyEncoder<E>
[src]

[src]

Returns the "default value" for a type. Read more

impl<E: Encode> Encode for BodyEncoder<E>
[src]

The type of items to be encoded.

[src]

Encodes the items in the encoder and writes the encoded bytes to the given buffer. Read more

[src]

Tries to start encoding the given item. Read more

[src]

Returns true if there are no items to be encoded in the encoder, otherwise false. Read more

[src]

Returns the number of bytes required to encode all the items in the encoder. Read more

impl<E: Encode> BodyEncode for BodyEncoder<E>
[src]

[src]

This method is called before starting to encode a HTTP body. Read more

Auto Trait Implementations

impl<E> Send for BodyEncoder<E> where
    E: Send

impl<E> Sync for BodyEncoder<E> where
    E: Sync