Enum actix_http::error::PayloadError [−][src]
#[non_exhaustive]
pub enum PayloadError {
Incomplete(Option<Error>),
EncodingCorrupted,
Overflow,
UnknownLength,
Http2Payload(Error),
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.
A payload reached EOF, but is not complete.
Content encoding stream corruption.
Payload reached size limit.
Payload length is unknown.
Http2Payload(Error)HTTP/2 payload error.
Io(Error)Generic I/O error.
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for PayloadErrorimpl Send for PayloadErrorimpl Sync for PayloadErrorimpl Unpin for PayloadErrorimpl !UnwindSafe for PayloadError