Expand description
Typed multipart form extractor for actix-web.
Modules§
- bytes
- Reads a field into memory.
- json
- Deserializes a field as JSON.
- tempfile
- Writes a field to a temporary file on disk.
- text
- Deserializes a field from plain text.
Structs§
- Limits
- Used to keep track of the remaining limits for the form and current field.
- Multipart
Form - Typed
multipart/form-data
extractor. - Multipart
Form Config MultipartForm
extractor configuration.
Enums§
Traits§
- Field
Reader - Trait that data types to be used in a multipart form struct should implement.
- Multipart
Form Trait - Trait that allows a type to be used in the
MultipartForm
extractor. You should use theMultipartForm
to implement this for your struct.
Derive Macros§
- Multipart
Form - Implements the
MultipartFormTrait
for a struct so that it can be used with theMultipartForm
extractor.