Enum actix_web::PayloadError [] [src]

pub enum PayloadError {
    Incomplete,
    ParseError(IoError),
}

A set of error that can occur during payload parsing.

Variants

A payload reached EOF, but is not complete.

Parse error

Trait Implementations

impl Debug for PayloadError
[src]

[src]

Formats the value using the given formatter.

impl Display for PayloadError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for PayloadError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<IoError> for PayloadError
[src]

[src]

Performs the conversion.