Enum ruma_client_api::error::ErrorKind
source · #[non_exhaustive]
pub enum ErrorKind {
Show 39 variants
Forbidden,
UnknownToken {
soft_logout: bool,
},
MissingToken,
BadJson,
NotJson,
NotFound,
LimitExceeded {
retry_after_ms: Option<Duration>,
},
Unknown,
Unrecognized,
Unauthorized,
UserDeactivated,
UserInUse,
InvalidUsername,
RoomInUse,
InvalidRoomState,
ThreepidInUse,
ThreepidNotFound,
ThreepidAuthFailed,
ThreepidDenied,
ServerNotTrusted,
UnsupportedRoomVersion,
IncompatibleRoomVersion {
room_version: RoomVersionId,
},
BadState,
GuestAccessForbidden,
CaptchaNeeded,
CaptchaInvalid,
MissingParam,
InvalidParam,
TooLarge,
Exclusive,
ResourceLimitExceeded {
admin_contact: String,
},
CannotLeaveServerNoticeRoom,
WeakPassword,
UnableToAuthorizeJoin,
UnableToGrantJoin,
BadAlias,
NotYetUploaded,
CannotOverwriteMedia,
UnknownPos,
// some variants omitted
}
client
or server
only.Expand description
An enum for the error kind.
Items may contain additional information.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Forbidden
M_FORBIDDEN
UnknownToken
Fields
M_UNKNOWN_TOKEN
MissingToken
M_MISSING_TOKEN
BadJson
M_BAD_JSON
NotJson
M_NOT_JSON
NotFound
M_NOT_FOUND
LimitExceeded
Fields
M_LIMIT_EXCEEDED
Unknown
M_UNKNOWN
Unrecognized
M_UNRECOGNIZED
M_UNAUTHORIZED
UserDeactivated
M_USER_DEACTIVATED
UserInUse
M_USER_IN_USE
InvalidUsername
M_INVALID_USERNAME
RoomInUse
M_ROOM_IN_USE
InvalidRoomState
M_INVALID_ROOM_STATE
ThreepidInUse
M_THREEPID_IN_USE
ThreepidNotFound
M_THREEPID_NOT_FOUND
ThreepidAuthFailed
M_THREEPID_AUTH_FAILED
ThreepidDenied
M_THREEPID_DENIED
ServerNotTrusted
M_SERVER_NOT_TRUSTED
UnsupportedRoomVersion
M_UNSUPPORTED_ROOM_VERSION
IncompatibleRoomVersion
Fields
room_version: RoomVersionId
The room’s version.
M_INCOMPATIBLE_ROOM_VERSION
BadState
M_BAD_STATE
GuestAccessForbidden
M_GUEST_ACCESS_FORBIDDEN
CaptchaNeeded
M_CAPTCHA_NEEDED
CaptchaInvalid
M_CAPTCHA_INVALID
MissingParam
M_MISSING_PARAM
InvalidParam
M_INVALID_PARAM
TooLarge
M_TOO_LARGE
Exclusive
M_EXCLUSIVE
ResourceLimitExceeded
M_RESOURCE_LIMIT_EXCEEDED
CannotLeaveServerNoticeRoom
M_CANNOT_LEAVE_SERVER_NOTICE_ROOM
WeakPassword
M_WEAK_PASSWORD
UnableToAuthorizeJoin
M_UNABLE_TO_AUTHORISE_JOIN
UnableToGrantJoin
M_UNABLE_TO_GRANT_JOIN
BadAlias
M_BAD_ALIAS
NotYetUploaded
unstable-msc2246
only.FI.MAU.MSC2246_NOT_YET_UPLOADED
CannotOverwriteMedia
unstable-msc2246
only.FI.MAU.MSC2246_CANNOT_OVERWRITE_MEDIA
UnknownPos
unstable-msc3575
only.M_UNKNOWN_POS for sliding sync
Trait Implementations§
source§impl<'de> Deserialize<'de> for ErrorKind
impl<'de> Deserialize<'de> for ErrorKind
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
source§impl PartialEq<ErrorKind> for ErrorKind
impl PartialEq<ErrorKind> for ErrorKind
impl Eq for ErrorKind
impl StructuralEq for ErrorKind
impl StructuralPartialEq for ErrorKind
Auto Trait Implementations§
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnwindSafe for ErrorKind
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.