rocket_multipart/lib.rs
1#![deny(missing_docs)]
2//! # Rocket Multipart Streams
3//!
4//! Implements support for Multipart streams in Rocket. The core types are
5//! `MultipartStream`, which adapts a stream of `MultipartSection`s into a
6//! `multipart/mixed` response, and `MultipartReader`, which parses a multipart
7//! stream into a sequence of `MultipartReadSection`s.
8
9mod reader;
10pub use reader::*;
11mod writer;
12pub use writer::*;
13#[cfg(test)]
14mod tests;
15