Enum multipart::server::save::PartialReason [] [src]

pub enum PartialReason {
    CountLimit,
    SizeLimit,
    IoError(Error),
}

The reason the save operation quit partway through.

Variants

The count limit for files in the request was hit.

The associated file has not been saved to the filesystem.

The size limit for an individual file was hit.

The file was partially written to the filesystem.

An error occurred during the operation.

Methods

impl PartialReason
[src]

[src]

Return io::Error in the IoError case or panic otherwise.

[src]

Return io::Error in the IoError case or panic with the given message otherwise.

Trait Implementations

impl Debug for PartialReason
[src]

[src]

Formats the value using the given formatter.

impl From<Error> for PartialReason
[src]

[src]

Performs the conversion.