Expand description
Errors that can occur while extracting information from the request body.
Structs§
- The
Content-Type
header not set toapplication/json
, or anotherapplication/*+json
MIME type. - Something went wrong when deserializing the request body into the specified type.
- The
Content-Type
header is missing, while we expected it to be set toapplication/json
, or anotherapplication/*+json
MIME type. - The
Content-Type
header is missing, while we expected it to be set toapplication/x-www-form-urlencoded
. - The request body is larger than the maximum size limit enforced by this server.
- Something went wrong while reading the request body, but we don’t know what specifically.
- Something went wrong when deserializing the request body into the specified type.
- The
Content-Type
header not set toapplication/x-www-form-urlencoded
.
Enums§
- The error returned by
BufferedBody::extract
when the extraction fails. - The error returned by
JsonBody::extract
when the extraction fails. - The error returned by
UrlEncodedBody::extract
when the extraction fails.