Enum actix_http::error::PayloadError
source · [−]#[non_exhaustive]
pub enum PayloadError {
Incomplete(Option<Error>),
EncodingCorrupted,
Overflow,
UnknownLength,
Io(Error),
}Expand description
A set of errors that can occur during payload parsing.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Incomplete(Option<Error>)
A payload reached EOF, but is not complete.
EncodingCorrupted
Content encoding stream corruption.
Overflow
Payload reached size limit.
UnknownLength
Payload length is unknown.
Io(Error)
Generic I/O error.
Trait Implementations
Performs the conversion.
Performs the conversion.
