Expand description
§Rocket Multipart Streams
Implements support for Multipart streams in Rocket. The core types are
MultipartStream
, which adapts a stream of MultipartSection
s into a
multipart/mixed
response, and MultipartReader
, which parses a multipart
stream into a sequence of MultipartReadSection
s.
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/mixed
stream.
Enums§
- Error
- Error returned by
MultipartReader