Enum actix_web::error::JsonPayloadError [−][src]
#[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.
Payload size is bigger than allowed & content length header set. (default: 2MB)
Payload size is bigger than allowed but no content length header set. (default: 2MB)
Fields of Overflow
limit: usizeContent type error
Deserialize(JsonError)Deserialize error
Tuple Fields of Deserialize
0: JsonErrorSerialize(JsonError)Serialize error
Tuple Fields of Serialize
0: JsonErrorPayload(PayloadError)Payload error
Tuple Fields of Payload
0: PayloadErrorTrait Implementations
Performs the conversion.
Returns appropriate status code for error. Read more
fn error_response(&self) -> HttpResponseⓘNotable traits for HttpResponse<Body>impl Future for HttpResponse<Body> type Output = Result<Response<Body>, Error>;
fn error_response(&self) -> HttpResponseⓘNotable traits for HttpResponse<Body>impl Future for HttpResponse<Body> type Output = Result<Response<Body>, Error>;
Notable traits for HttpResponse<Body>
impl Future for HttpResponse<Body> type Output = Result<Response<Body>, Error>;Creates full response for error. Read more