Crates.io | formdata |
lib.rs | formdata |
version | 0.13.0 |
source | src |
created_at | 2015-06-11 04:44:35.692922 |
updated_at | 2020-10-01 19:11:03.067299 |
description | Parsing of multipart/form-data |
homepage | |
repository | https://github.com/mikedilger/formdata |
max_upload_size | |
id | 2357 |
size | 32,736 |
Documentation is available at https://mikedilger.github.io/formdata
This library provides a type for storing multipart/form-data
data, as well as functions
to stream (read or write) such data over HTTP.
multipart/form-data
format as described by RFC 7578.
HTML forms with enctype=multipart/form-data
POST
their data in this format.
This enctype
is typically used whenever a form has file upload input fields,
as the default application/x-www-form-urlencoded
cannot handle file uploads.
Whether reading from a stream or writing out to a stream, files are never stored entirely in memory, but instead streamed through a buffer.