rocket-multipart-form-data 0.4.1

This crate provides a multipart parser for the Rocket framework.
Documentation
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum MultipartFormDataType {
    /// Stored the parsed data as a string.
    Text,
    /// Stored the parsed data as a Vec<u8> instance.
    Raw,
    /// Stored the parsed data as a file.
    File,
}