[−][src]Module multipart::server
The server-side abstraction for multipart requests. Enabled with the server
feature.
Use this when you are implementing an HTTP server and want to
to accept, parse, and serve HTTP multipart/form-data
requests (file uploads).
See the Multipart
struct for more info.
Re-exports
pub extern crate buf_redux; |
pub use self::save::Entries; |
pub use self::save::SaveResult; |
pub use self::save::SavedField; |
Modules
save | Utilities for saving request entries to the filesystem. |
Structs
FieldHeaders | The headers that (may) appear before a |
Multipart | The server-side implementation of |
MultipartData | The data of a field in a |
MultipartField | A field in a multipart request with its associated headers and data. |
Enums
ReadEntryResult | Ternary result type returned by |
Traits
HttpRequest | A server-side HTTP request that may or may not be multipart. |
ReadEntry | Common trait for |
Type Definitions
ArcStr | Default typedef for shared strings. |