Struct multipart::server::Entries
[−]
[src]
pub struct Entries {
pub fields: HashMap<String, String>,
pub files: HashMap<String, SavedFile>,
pub dir: SaveDir,
}A result of Multipart::save_all().
Fields
fields: HashMap<String, String>
The text fields of the multipart request, mapped by field name -> value.
files: HashMap<String, SavedFile>
A map of file field names to their contents saved on the filesystem.
dir: SaveDir
The directory the files in this request were saved under; may be temporary or permanent.