#[non_exhaustive]
pub enum Error {
Show 33 variants HttpError(Arc<Error>), InvalidHeaderValue, InvalidJson(Arc<Error>), LockFailure, InvalidTitle(Error), InvalidEtag, BadToken, TokenFailure(String), InvalidHeadingLevel(u32), NotLoggedIn, NotLoggedInAsBot, PermissionDenied(String), Blocked { info: String, details: BlockDetails, }, PartiallyBlocked { info: String, details: BlockDetails, }, GloballyBlocked(String), GloballyRangeBlocked(String), GloballyXFFBlocked(String), UnknownBlock(String), LoginThrottled, WrongPassword, InvalidPage, Nobots, PageDoesNotExist(String), ProtectedPage, EditConflict, ContentTooBig(String), SpamFilter { info: String, matches: Vec<String, Global>, }, UnknownSaveFailure(Value), Maxlag(String), Readonly(String), InternalException(ApiError), ApiError(ApiError), Unknown(String),
}
Expand description

Primary error class

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(Arc<Error>)

A HTTP error like a 4XX or 5XX status code

InvalidHeaderValue

Invalid header value, likely if the provided OAuth2 token or User-agent are invalid

InvalidJson(Arc<Error>)

Error when decoding the JSON response from the API

LockFailure

Error if unable to get request concurrency lock

InvalidTitle(Error)

InvalidEtag

etag header is invalid/missing

BadToken

Token invalid or expired

TokenFailure(String)

Unable to fetch a CSRF token

InvalidHeadingLevel(u32)

NotLoggedIn

When expected to be logged in but aren’t

NotLoggedInAsBot

When expected to be logged in but aren’t

PermissionDenied(String)

Blocked

Fields

info: String
details: BlockDetails

PartiallyBlocked

Fields

info: String
details: BlockDetails

GloballyBlocked(String)

GloballyRangeBlocked(String)

GloballyXFFBlocked(String)

UnknownBlock(String)

When we can’t group it into a more specific block

LoginThrottled

WrongPassword

InvalidPage

Nobots

When {{nobots}} matches

PageDoesNotExist(String)

Page does not exist

ProtectedPage

Page is protected

EditConflict

Edit conflict

ContentTooBig(String)

SpamFilter

Fields

info: String
matches: Vec<String, Global>

Tripped the spam filter (aka SpamBlacklist)

UnknownSaveFailure(Value)

Some save failure happened, but we don’t know what it is

Maxlag(String)

Readonly(String)

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

Whether the issue is related to a specific page rather than a global issue

Whether the issue is related to a sitewide block

Whether the request should be retried, after some suitable backoff and likely with some retry limit

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
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