Module multipart

Source
Expand description

Multipart form utilities. The meat of this is the build_multipart function. The serialization code was needed to make it be able to tell a Vec<u8> apart from other arrays. Vec<u8> are specifically assumed to be file uploads.

Structsยง

CaptureError ๐Ÿ”’
Internal serializer error used to implement serde::ser::Error without panicking.
ElemCapture ๐Ÿ”’
FieldSerializer ๐Ÿ”’
Serializer that captures a single field into a CapturedField.
SeqCapture ๐Ÿ”’
StructCapture ๐Ÿ”’
TopSerializer ๐Ÿ”’
Serializer that captures a struct into a key -> CapturedField map.

Enumsยง

CapturedField ๐Ÿ”’
Internal captured representation of a struct field for multipart building.
SeqElem ๐Ÿ”’

Functionsยง

build_multipart