Crate actix_easy_multipart

Crate actix_easy_multipart 

Source
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.
MultipartForm
Typed multipart/form-data extractor.
MultipartFormConfig
MultipartForm extractor configuration.

Enums§

Error

Traits§

FieldReader
Trait that data types to be used in a multipart form struct should implement.
MultipartFormTrait
Trait that allows a type to be used in the MultipartForm extractor. You should use the MultipartForm to implement this for your struct.

Derive Macros§

MultipartForm
Implements the MultipartFormTrait for a struct so that it can be used with the MultipartForm extractor.