Struct multipart::server::save::Entries [] [src]

pub struct Entries {
    pub fields: HashMap<String, String>,
    pub files: HashMap<String, Vec<SavedFile>>,
    pub save_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.

Methods

impl Entries
[src]

Returns true if both fields and files are empty, false otherwise.

Trait Implementations

impl Key for Entries
[src]

The value type associated with this key type.

impl Debug for Entries
[src]

Formats the value using the given formatter.