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

pub struct PartialFileField<M> {
    pub field_name: String,
    pub source: MultipartFile<M>,
    pub dest: Option<SavedFile>,
}

The file field that was being read when the save operation quit.

May be partially saved to the filesystem if dest is Some.

Fields

The field name for the partial file.

The partial file's source in the multipart stream (may be partially read if dest is Some).

The partial file's entry on the filesystem, if the operation got that far.

Trait Implementations

impl<M: Debug> Debug for PartialFileField<M>
[src]

Formats the value using the given formatter.