#[non_exhaustive]pub struct MangaDexError {
pub id: Uuid,
pub status: u16,
pub title: Option<String>,
pub detail: Option<String>,
pub context: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Uuid§status: u16HTTP status code.
title: Option<String>Error title.
detail: Option<String>Description about the error.
context: Option<HashMap<String, String>>Provides insight into why the request failed.
§Captcha Errors (400)
The error may have been caused by one of the following:
- Captcha challenge result was wrong.
- The Captcha Verification service was down.
- Other, refer to the error message and the
errorCodevalue.
§Rate Limit, Captcha Required (403)
Some endpoints may require captchas to proceed, in order to slow down automated malicious traffic. Legitimate users might also be affected, based on the frequency of write requests or due certain endpoints being particularly sensitive to malicious use, such as user signup.
Once an endpoint decides that a captcha needs to be solved,
a 403 Forbidden response will be returned, with the error code captcha_required_exception.
The sitekey needed for recaptcha to function is provided in both the
X-Captcha-Sitekey header field, as well as in the error context,
specified as siteKey parameter.
The captcha result of the client can either be passed into the repeated original request
with the X-Captcha-Result header or alternatively to the POST /captcha/solve endpoint.
The time a solved captcha is remembered varies across different endpoints and can also be
influenced by individual client behavior.
Authentication is not required for the POST /captcha/solve endpoint, captchas are tracked
both by client ip and logged in user id. If you are logged in, you want to send the session
token along, so you validate the captcha for your client ip and user id at the same time,
but it is not required.
Trait Implementations§
Source§impl Clone for MangaDexError
impl Clone for MangaDexError
Source§fn clone(&self) -> MangaDexError
fn clone(&self) -> MangaDexError
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more