Enum actix_web::error::PayloadError
source · [−]#[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.
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.
Http2Payload(Error)
HTTP/2 payload error.
Io(Error)
Generic I/O error.
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for PayloadError
impl Send for PayloadError
impl Sync for PayloadError
impl Unpin for PayloadError
impl !UnwindSafe for PayloadError
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more