pub struct MultipartStream<S, E> where
    S: Stream<Item = Result<Bytes, E>> + Unpin,
    E: Into<Box<dyn StdError + Send + Sync + 'static>>, 
{ /* private fields */ }
Expand description

The main MultipartStream struct which will contain one or more fields (a stream of streams)

You can construct this given a boundary and a stream of bytes from a server request.

Please Note: If you are reading in a field, you must exhaust the field’s bytes before moving onto the next field

let mut stream = MultipartStream::new(boundary, body.map_ok(|mut buf| {
    let mut ret = BytesMut::with_capacity(buf.remaining());
    ret.put(buf);
    ret.freeze()
}));

while let Ok(Some(mut field)) = stream.try_next().await {
    println!("Field received:{}", field.name().unwrap());
    if let Ok(filename) = field.filename() {
        println!("Field filename:{}", filename);
    }

    while let Ok(Some(bytes)) = field.try_next().await {
        println!("Bytes received:{}", bytes.len());
    }
}

Implementations

Construct a MultipartStream given a boundary

Trait Implementations

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