rocket-multipart 0.2.1

Provides a `multipart/mixed` Responder implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![deny(missing_docs)]
//! # 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.

mod reader;
pub use reader::*;
mod writer;
pub use writer::*;
#[cfg(test)]
mod tests;