pub struct MultipartRequest<S> { /* private fields */ }
Expand description

The main MultipartRequest struct for sending Multipart submissions to servers

Implementations

Construct a new MultipartRequest with a given Boundary

If you want a boundary generated automatically, then you can use MultipartRequest::default()

Add a raw Stream to the Multipart request

The Stream should return items of Result<Bytes, Error>

Add a Field to the Multipart request

Gets the boundary for the MultipartRequest

This is useful for supplying the Content-Type header

Add a FileStream to a MultipartRequest given a path to a file

This will guess the Content Type based upon the path (i.e, .jpg will be image/jpeg)

Trait Implementations

Returns the “default value” for a type. Read more

Values yielded by the stream.

Attempt to pull out the next value of this stream, registering the current task for wakeup if the value is not yet available, and returning None if the stream is exhausted. Read more

Returns the bounds on the remaining length of the stream. 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.

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.

The type of successful values yielded by this future

The type of failures yielded by this future

Poll this TryStream as if it were a Stream. Read more