Expand description
§Rocket Multipart Streams
Implements support for Multipart streams in Rocket. The core types are
MultipartStream, which adapts a stream of MultipartSections into a
multipart/mixed response, and MultipartReader, which parses a multipart
stream into a sequence of MultipartReadSections.
Structs§
- Multipart
Read Section - A single section in a multipart stream
- Multipart
Reader - A data guard for
multipart/*data. Provides async reading of the individual multipart sections. - Multipart
Section - A single section to be returned in a stream
- Multipart
Stream - A stream of sections to be returned as a
multipart/mixedstream.
Enums§
- Error
- Error returned by
MultipartReader