#[non_exhaustive]pub enum Error {
Show 16 variants
HttpError(Error),
InvalidHeaderValue(InvalidHeaderValue),
InvalidJson(Error),
LockFailure(AcquireError),
IoError(Error),
TooManyRequests {
retry_after: Option<u64>,
},
BadToken,
TokenFailure(String),
NotLoggedIn,
NotLoggedInAsBot,
UploadWarning(Vec<String>),
Maxlag {
info: String,
retry_after: Option<u64>,
},
Readonly {
info: String,
retry_after: Option<u64>,
},
InternalException(ApiError),
ApiError(ApiError),
Unknown(String),
}
Expand description
Possible errors
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.
HttpError(Error)
A HTTP error like a 4XX or 5XX status code
InvalidHeaderValue(InvalidHeaderValue)
Invalid header value, likely if the provided OAuth2 token or User-agent are invalid
InvalidJson(Error)
Error when decoding the JSON response from the API
LockFailure(AcquireError)
Error if unable to get request concurrency lock
IoError(Error)
TooManyRequests
A HTTP error with 429 status code
BadToken
Token invalid or expired
TokenFailure(String)
Unable to fetch a CSRF token
NotLoggedIn
When expected to be logged in but aren’t
NotLoggedInAsBot
When expected to be logged in but aren’t
UploadWarning(Vec<String>)
Maxlag
Readonly
When MediaWiki is in readonly mode
InternalException(ApiError)
An internal MediaWiki exception
ApiError(ApiError)
Any arbitrary error returned by the MediaWiki API
Unknown(String)
An error where we don’t know what to do nor have information to report back
Implementations§
Source§impl Error
impl Error
Sourcepub fn with_retry_after(self, value: u64) -> Self
pub fn with_retry_after(self, value: u64) -> Self
Store the value of the retry-after header, if one was present, for error types that are safe to retry
Sourcepub fn retry_after(&self) -> Option<u64>
pub fn retry_after(&self) -> Option<u64>
If the error merits a retry, how long should we wait?
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more