Enum actix_web::multipart::MultipartError [] [src]

pub enum MultipartError {
    NoContentType,
    ParseContentType,
    Boundary,
    Parse(ParseError),
    Payload(PayloadError),
}

A set of errors that can occur during parsing multipart streams.

Variants

Content-Type header is not found

Can not parse Content-Type header

Multipart boundary is not found

Error during field parsing

Payload error

Trait Implementations

impl Debug for MultipartError
[src]

[src]

Formats the value using the given formatter.

impl Display for MultipartError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for MultipartError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<ParseError> for MultipartError
[src]

[src]

Performs the conversion.

impl From<PayloadError> for MultipartError
[src]

[src]

Performs the conversion.