Enum ruma::events::key::verification::cancel::CancelCode
source · #[non_exhaustive]pub enum CancelCode {
User,
Timeout,
UnknownTransaction,
UnknownMethod,
UnexpectedMessage,
KeyMismatch,
UserMismatch,
InvalidMessage,
Accepted,
MismatchedCommitment,
MismatchedSas,
}
Expand description
An error code for why the process/request was cancelled by the user.
Custom error codes should use the Java package naming convention.
This type can hold an arbitrary string. To build this with a custom value, convert it from a
string with ::from()
/ .into()
. To check for values that are not available as a
documented variant here, use its string representation, obtained through
.as_str()
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
User
The user cancelled the verification.
Timeout
The verification process timed out.
Verification processes can define their own timeout parameters.
UnknownTransaction
The device does not know about the given transaction ID.
UnknownMethod
The device does not know how to handle the requested method.
Should be sent for m.key.verification.start
messages and messages defined by individual
verification processes.
UnexpectedMessage
The device received an unexpected message.
Typically raised when one of the parties is handling the verification out of order.
KeyMismatch
The key was not verified.
UserMismatch
The expected user did not match the user verified.
InvalidMessage
The message received was invalid.
Accepted
An m.key.verification.request
was accepted by a different device.
The device receiving this error can ignore the verification request.
MismatchedCommitment
The device receiving this error can ignore the verification request.
MismatchedSas
The SAS did not match.
Implementations§
Trait Implementations§
source§impl AsRef<str> for CancelCode
impl AsRef<str> for CancelCode
source§impl Clone for CancelCode
impl Clone for CancelCode
source§fn clone(&self) -> CancelCode
fn clone(&self) -> CancelCode
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CancelCode
impl Debug for CancelCode
source§impl<'de> Deserialize<'de> for CancelCode
impl<'de> Deserialize<'de> for CancelCode
source§fn deserialize<D>(
deserializer: D,
) -> Result<CancelCode, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<CancelCode, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
source§impl Display for CancelCode
impl Display for CancelCode
source§impl<T> From<T> for CancelCode
impl<T> From<T> for CancelCode
source§fn from(s: T) -> CancelCode
fn from(s: T) -> CancelCode
source§impl PartialEq for CancelCode
impl PartialEq for CancelCode
source§fn eq(&self, other: &CancelCode) -> bool
fn eq(&self, other: &CancelCode) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CancelCode
impl Serialize for CancelCode
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
impl Eq for CancelCode
impl StructuralPartialEq for CancelCode
Auto Trait Implementations§
impl Freeze for CancelCode
impl RefUnwindSafe for CancelCode
impl Send for CancelCode
impl Sync for CancelCode
impl Unpin for CancelCode
impl UnwindSafe for CancelCode
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.