Enum actix_http::error::PayloadError [−][src]
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
Incomplete(Option<Error>)
A payload reached EOF, but is not complete.
EncodingCorrupted
Content encoding stream corruption
Overflow
A payload reached size limit.
UnknownLength
A payload length is unknown.
Http2Payload(Error)
Tuple Fields
0: Error
Http2 payload error
Io(Error)
Tuple Fields
0: Error
Io error
Trait Implementations
Performs the conversion.
PayloadError
returns two possible results:
Overflow
returnsPayloadTooLarge
- Other errors returns
BadRequest
Response’s status code Read more
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
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
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