Module actix_multipart::form
source · Expand description
Process and extract typed data from a multipart stream.
Modules§
- Reads a field into memory.
- Deserializes a field as JSON.
- tempfile
tempfile
Writes a field to a temporary file on disk. - Deserializes a field from plain text.
Structs§
- Used to keep track of the remaining limits for the form and current field.
- Typed
multipart/form-data
extractor. MultipartForm
extractor configuration.
Traits§
- Trait that data types to be used in a multipart form struct should implement.
- Trait that allows a type to be used in the
MultipartForm
extractor.
Derive Macros§
- MultipartForm
derive
ImplementsMultipartCollect
for a struct so that it can be used with theMultipartForm
extractor.