#[non_exhaustive]pub enum AnyToDeviceEventContent {
Show 15 variants
Dummy(ToDeviceDummyEventContent),
RoomKey(ToDeviceRoomKeyEventContent),
RoomKeyRequest(ToDeviceRoomKeyRequestEventContent),
ForwardedRoomKey(ToDeviceForwardedRoomKeyEventContent),
KeyVerificationRequest(ToDeviceKeyVerificationRequestEventContent),
KeyVerificationReady(ToDeviceKeyVerificationReadyEventContent),
KeyVerificationStart(ToDeviceKeyVerificationStartEventContent),
KeyVerificationCancel(ToDeviceKeyVerificationCancelEventContent),
KeyVerificationAccept(ToDeviceKeyVerificationAcceptEventContent),
KeyVerificationKey(ToDeviceKeyVerificationKeyEventContent),
KeyVerificationMac(ToDeviceKeyVerificationMacEventContent),
KeyVerificationDone(ToDeviceKeyVerificationDoneEventContent),
RoomEncrypted(ToDeviceRoomEncryptedEventContent),
SecretRequest(ToDeviceSecretRequestEventContent),
SecretSend(ToDeviceSecretSendEventContent),
}
Expand description
Any to-device event.
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(ToDeviceDummyEventContent)
m.dummy
RoomKey(ToDeviceRoomKeyEventContent)
m.room_key
RoomKeyRequest(ToDeviceRoomKeyRequestEventContent)
m.room_key_request
ForwardedRoomKey(ToDeviceForwardedRoomKeyEventContent)
m.forwarded_room_key
KeyVerificationRequest(ToDeviceKeyVerificationRequestEventContent)
m.key.verification.request
KeyVerificationReady(ToDeviceKeyVerificationReadyEventContent)
m.key.verification.ready
KeyVerificationStart(ToDeviceKeyVerificationStartEventContent)
m.key.verification.start
KeyVerificationCancel(ToDeviceKeyVerificationCancelEventContent)
m.key.verification.cancel
KeyVerificationAccept(ToDeviceKeyVerificationAcceptEventContent)
m.key.verification.accept
KeyVerificationKey(ToDeviceKeyVerificationKeyEventContent)
m.key.verification.key
KeyVerificationMac(ToDeviceKeyVerificationMacEventContent)
m.key.verification.mac
KeyVerificationDone(ToDeviceKeyVerificationDoneEventContent)
m.key.verification.done
RoomEncrypted(ToDeviceRoomEncryptedEventContent)
m.room.encrypted
SecretRequest(ToDeviceSecretRequestEventContent)
m.secret.request
SecretSend(ToDeviceSecretSendEventContent)
m.secret.send
Trait Implementations§
source§impl Clone for AnyToDeviceEventContent
impl Clone for AnyToDeviceEventContent
source§fn clone(&self) -> AnyToDeviceEventContent
fn clone(&self) -> AnyToDeviceEventContent
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 AnyToDeviceEventContent
impl Debug for AnyToDeviceEventContent
source§impl EventContent for AnyToDeviceEventContent
impl EventContent for AnyToDeviceEventContent
§type EventType = ToDeviceEventType
type EventType = ToDeviceEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message
.source§impl From<ToDeviceDummyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceDummyEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceDummyEventContent) -> Self
fn from(c: ToDeviceDummyEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceForwardedRoomKeyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceForwardedRoomKeyEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceForwardedRoomKeyEventContent) -> Self
fn from(c: ToDeviceForwardedRoomKeyEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceKeyVerificationAcceptEventContent> for AnyToDeviceEventContent
impl From<ToDeviceKeyVerificationAcceptEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceKeyVerificationAcceptEventContent) -> Self
fn from(c: ToDeviceKeyVerificationAcceptEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceKeyVerificationCancelEventContent> for AnyToDeviceEventContent
impl From<ToDeviceKeyVerificationCancelEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceKeyVerificationCancelEventContent) -> Self
fn from(c: ToDeviceKeyVerificationCancelEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceKeyVerificationDoneEventContent> for AnyToDeviceEventContent
impl From<ToDeviceKeyVerificationDoneEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceKeyVerificationDoneEventContent) -> Self
fn from(c: ToDeviceKeyVerificationDoneEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceKeyVerificationKeyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceKeyVerificationKeyEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceKeyVerificationKeyEventContent) -> Self
fn from(c: ToDeviceKeyVerificationKeyEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceKeyVerificationMacEventContent> for AnyToDeviceEventContent
impl From<ToDeviceKeyVerificationMacEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceKeyVerificationMacEventContent) -> Self
fn from(c: ToDeviceKeyVerificationMacEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceKeyVerificationReadyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceKeyVerificationReadyEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceKeyVerificationReadyEventContent) -> Self
fn from(c: ToDeviceKeyVerificationReadyEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceKeyVerificationRequestEventContent> for AnyToDeviceEventContent
impl From<ToDeviceKeyVerificationRequestEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceKeyVerificationRequestEventContent) -> Self
fn from(c: ToDeviceKeyVerificationRequestEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceKeyVerificationStartEventContent> for AnyToDeviceEventContent
impl From<ToDeviceKeyVerificationStartEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceKeyVerificationStartEventContent) -> Self
fn from(c: ToDeviceKeyVerificationStartEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceRoomEncryptedEventContent> for AnyToDeviceEventContent
impl From<ToDeviceRoomEncryptedEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceRoomEncryptedEventContent) -> Self
fn from(c: ToDeviceRoomEncryptedEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceRoomKeyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceRoomKeyEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceRoomKeyEventContent) -> Self
fn from(c: ToDeviceRoomKeyEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceRoomKeyRequestEventContent> for AnyToDeviceEventContent
impl From<ToDeviceRoomKeyRequestEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceRoomKeyRequestEventContent) -> Self
fn from(c: ToDeviceRoomKeyRequestEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceSecretRequestEventContent> for AnyToDeviceEventContent
impl From<ToDeviceSecretRequestEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceSecretRequestEventContent) -> Self
fn from(c: ToDeviceSecretRequestEventContent) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceSecretSendEventContent> for AnyToDeviceEventContent
impl From<ToDeviceSecretSendEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceSecretSendEventContent) -> Self
fn from(c: ToDeviceSecretSendEventContent) -> Self
Converts to this type from the input type.
source§impl Serialize for AnyToDeviceEventContent
impl Serialize for AnyToDeviceEventContent
impl ToDeviceEventContent for AnyToDeviceEventContent
Auto Trait Implementations§
impl Freeze for AnyToDeviceEventContent
impl RefUnwindSafe for AnyToDeviceEventContent
impl Send for AnyToDeviceEventContent
impl Sync for AnyToDeviceEventContent
impl Unpin for AnyToDeviceEventContent
impl UnwindSafe for AnyToDeviceEventContent
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
)