Struct formdata::form_data::FormData
[−]
[src]
pub struct FormData {
pub fields: Vec<(String, String)>,
pub files: Vec<(String, UploadedFile)>,
}The extracted text fields and uploaded files from a multipart/form-data request.
Use parse_multipart to devise this object from a request.
Fields
fields | Name-value pairs for plain text fields. Technically, these are form data parts with no
filename specified in the part's |
files | Name-value pairs for temporary files. Technically, these are form data parts with a filename
specified in the part's |