Struct multipart::server::iron::FileSizeLimitError [] [src]

pub struct FileSizeLimitError {
    pub field: String,
    pub filename: Option<String>,
}

An error returned from Intercept when the size limit for an individual file is exceeded.

Fields

The field where the error occurred.

The filename of the oversize file, if it was provided.

Trait Implementations

impl Debug for FileSizeLimitError
[src]

[src]

Formats the value using the given formatter.

impl Error for FileSizeLimitError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl Display for FileSizeLimitError
[src]

[src]

Formats the value using the given formatter. Read more

impl Into<IronError> for FileSizeLimitError
[src]

[src]

Performs the conversion.