#[non_exhaustive]pub enum ToDeviceEventType {
Show 17 variants
    Dummy,
    RoomKey,
    RoomKeyBundle,
    RoomKeyRequest,
    RoomKeyWithheld,
    ForwardedRoomKey,
    KeyVerificationRequest,
    KeyVerificationReady,
    KeyVerificationStart,
    KeyVerificationCancel,
    KeyVerificationAccept,
    KeyVerificationKey,
    KeyVerificationMac,
    KeyVerificationDone,
    RoomEncrypted,
    SecretRequest,
    SecretSend,
}Available on crate feature 
events only.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
RoomKeyBundle
io.element.msc4268.room_key_bundle
RoomKeyRequest
m.room_key_request
RoomKeyWithheld
m.room_key.withheld
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 duplicate 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§impl PartialOrd for ToDeviceEventType
 
impl PartialOrd for ToDeviceEventType
Source§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§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.