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.
Tuple Fields of Http2Payload
0: Error
Io(Error)
Generic I/O error.
Tuple Fields of Io
0: Error
Trait Implementations
Performs the conversion.
Performs the conversion.