Enum ruma::events::ToDeviceEventType
source · #[non_exhaustive]pub enum ToDeviceEventType {
Show 15 variants
Dummy,
RoomKey,
RoomKeyRequest,
ForwardedRoomKey,
KeyVerificationRequest,
KeyVerificationReady,
KeyVerificationStart,
KeyVerificationCancel,
KeyVerificationAccept,
KeyVerificationKey,
KeyVerificationMac,
KeyVerificationDone,
RoomEncrypted,
SecretRequest,
SecretSend,
}
Expand description
The type of ToDeviceEvent
this is.
This type can hold an arbitrary string. To build events with a custom type, convert it
from a string with ::from()
/ .into()
. To check for events that are not available as a
documented variant here, use its string representation, obtained through .to_string()
.
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.
Dummy
m.dummy
RoomKey
m.room_key
RoomKeyRequest
m.room_key_request
ForwardedRoomKey
m.forwarded_room_key
KeyVerificationRequest
m.key.verification.request
KeyVerificationReady
m.key.verification.ready
KeyVerificationStart
m.key.verification.start
KeyVerificationCancel
m.key.verification.cancel
KeyVerificationAccept
m.key.verification.accept
KeyVerificationKey
m.key.verification.key
KeyVerificationMac
m.key.verification.mac
KeyVerificationDone
m.key.verification.done
RoomEncrypted
m.room.encrypted
SecretRequest
m.secret.request
SecretSend
m.secret.send
Trait Implementations§
source§impl Clone for ToDeviceEventType
impl Clone for ToDeviceEventType
source§fn clone(&self) -> ToDeviceEventType
fn clone(&self) -> ToDeviceEventType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ToDeviceEventType
impl Debug for ToDeviceEventType
source§impl<'de> Deserialize<'de> for ToDeviceEventType
impl<'de> Deserialize<'de> for ToDeviceEventType
source§fn deserialize<D>(
deserializer: D,
) -> Result<ToDeviceEventType, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<ToDeviceEventType, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for ToDeviceEventType
impl Display for ToDeviceEventType
source§impl From<&str> for ToDeviceEventType
impl From<&str> for ToDeviceEventType
source§fn from(s: &str) -> ToDeviceEventType
fn from(s: &str) -> ToDeviceEventType
Converts to this type from the input type.
source§impl From<String> for ToDeviceEventType
impl From<String> for ToDeviceEventType
source§fn from(s: String) -> ToDeviceEventType
fn from(s: String) -> ToDeviceEventType
Converts to this type from the input type.
source§impl Hash for ToDeviceEventType
impl Hash for ToDeviceEventType
source§impl Ord for ToDeviceEventType
impl Ord for ToDeviceEventType
source§fn cmp(&self, other: &ToDeviceEventType) -> Ordering
fn cmp(&self, other: &ToDeviceEventType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ToDeviceEventType
impl PartialEq for ToDeviceEventType
source§fn eq(&self, other: &ToDeviceEventType) -> bool
fn eq(&self, other: &ToDeviceEventType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ToDeviceEventType
impl PartialOrd for ToDeviceEventType
source§fn partial_cmp(&self, other: &ToDeviceEventType) -> Option<Ordering>
fn partial_cmp(&self, other: &ToDeviceEventType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for ToDeviceEventType
impl Serialize for ToDeviceEventType
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,
Serialize this value into the given Serde serializer. Read more
impl Eq for ToDeviceEventType
impl StructuralPartialEq for ToDeviceEventType
Auto Trait Implementations§
impl Freeze for ToDeviceEventType
impl RefUnwindSafe for ToDeviceEventType
impl Send for ToDeviceEventType
impl Sync for ToDeviceEventType
impl Unpin for ToDeviceEventType
impl UnwindSafe for ToDeviceEventType
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
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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
Compare self to
key
and return true
if they are equal.