Crate multipart_write

Crate multipart_write 

Source
Expand description

§Description

This crate contains the trait MultipartWrite, assorted implementations, and combinators.

A MultipartWrite is a similar interface to Sink, except that writing an item or completing the write both return values.

Modules§

io
MultipartWrite for foreign writer types.
prelude
A prelude for this crate.
stream
MultipartWriters compatible with Stream.
write
MultipartWrite combinators.

Traits§

FusedMultipartWrite
A writer that tracks whether or not the underlying writer should no longer be polled.
MultipartWrite
MultipartWrite is a Sink-like interface for asynchronously writing an object in parts.

Type Aliases§

BoxMultipartWrite
An owned, dynamically typed MultipartWrite for use in cases where it is not possible or desirable to statically type it.
LocalBoxMultipartWrite
BoxMultipartWrite but without the Send requirement.