Enum actix_web::error::JsonPayloadError
source · [−]#[non_exhaustive]
pub enum JsonPayloadError {
OverflowKnownLength {
length: usize,
limit: usize,
},
Overflow {
limit: usize,
},
ContentType,
Deserialize(JsonError),
Serialize(JsonError),
Payload(PayloadError),
}
Expand description
A set of errors that can occur during parsing json payloads
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.
OverflowKnownLength
Payload size is bigger than allowed & content length header set. (default: 2MB)
Overflow
Fields
limit: usize
Payload size is bigger than allowed but no content length header set. (default: 2MB)
ContentType
Content type error
Deserialize(JsonError)
Deserialize error
Serialize(JsonError)
Serialize error
Payload(PayloadError)
Payload error
Trait Implementations
Performs the conversion.
Returns appropriate status code for error. Read more
fn error_response(&self) -> HttpResponse<BoxBody>ⓘNotable traits for HttpResponse<BoxBody>impl Future for HttpResponse<BoxBody> type Output = Result<Response<BoxBody>, Error>;
fn error_response(&self) -> HttpResponse<BoxBody>ⓘNotable traits for HttpResponse<BoxBody>impl Future for HttpResponse<BoxBody> type Output = Result<Response<BoxBody>, Error>;
Notable traits for HttpResponse<BoxBody>
impl Future for HttpResponse<BoxBody> type Output = Result<Response<BoxBody>, Error>;
Creates full response for error. Read more
Auto Trait Implementations
impl !RefUnwindSafe for JsonPayloadError
impl Send for JsonPayloadError
impl Sync for JsonPayloadError
impl Unpin for JsonPayloadError
impl !UnwindSafe for JsonPayloadError
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