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

The text fields of the multipart request, mapped by field name -> value.

A map of file field names to their contents saved on the filesystem.

The directory the files in this request were saved under; may be temporary or permanent.

Trait Implementations

impl Debug for Entries
[src]

Formats the value using the given formatter.