pub enum AnyToDeviceEvent {
Show 15 variants Dummy(ToDeviceDummyEvent), RoomKey(ToDeviceRoomKeyEvent), RoomKeyRequest(ToDeviceRoomKeyRequestEvent), ForwardedRoomKey(ToDeviceForwardedRoomKeyEvent), KeyVerificationRequest(ToDeviceKeyVerificationRequestEvent), KeyVerificationReady(ToDeviceKeyVerificationReadyEvent), KeyVerificationStart(ToDeviceKeyVerificationStartEvent), KeyVerificationCancel(ToDeviceKeyVerificationCancelEvent), KeyVerificationAccept(ToDeviceKeyVerificationAcceptEvent), KeyVerificationKey(ToDeviceKeyVerificationKeyEvent), KeyVerificationMac(ToDeviceKeyVerificationMacEvent), KeyVerificationDone(ToDeviceKeyVerificationDoneEvent), RoomEncrypted(ToDeviceRoomEncryptedEvent), SecretRequest(ToDeviceSecretRequestEvent), SecretSend(ToDeviceSecretSendEvent), // some variants omitted
}
Expand description

Any to-device event.

Variants§

§

Dummy(ToDeviceDummyEvent)

m.dummy

§

RoomKey(ToDeviceRoomKeyEvent)

m.room_key

§

RoomKeyRequest(ToDeviceRoomKeyRequestEvent)

m.room_key_request

§

ForwardedRoomKey(ToDeviceForwardedRoomKeyEvent)

m.forwarded_room_key

§

KeyVerificationRequest(ToDeviceKeyVerificationRequestEvent)

m.key.verification.request

§

KeyVerificationReady(ToDeviceKeyVerificationReadyEvent)

m.key.verification.ready

§

KeyVerificationStart(ToDeviceKeyVerificationStartEvent)

m.key.verification.start

§

KeyVerificationCancel(ToDeviceKeyVerificationCancelEvent)

m.key.verification.cancel

§

KeyVerificationAccept(ToDeviceKeyVerificationAcceptEvent)

m.key.verification.accept

§

KeyVerificationKey(ToDeviceKeyVerificationKeyEvent)

m.key.verification.key

§

KeyVerificationMac(ToDeviceKeyVerificationMacEvent)

m.key.verification.mac

§

KeyVerificationDone(ToDeviceKeyVerificationDoneEvent)

m.key.verification.done

§

RoomEncrypted(ToDeviceRoomEncryptedEvent)

m.room.encrypted

§

SecretRequest(ToDeviceSecretRequestEvent)

m.secret.request

§

SecretSend(ToDeviceSecretSendEvent)

m.secret.send

Implementations§

source§

impl AnyToDeviceEvent

source

pub fn event_type(&self) -> ToDeviceEventType

Returns the type of this event.

source

pub fn content(&self) -> AnyToDeviceEventContent

Returns the content for this event.

source

pub fn sender(&self) -> &UserId

Returns this event’s sender field.

Trait Implementations§

source§

impl Clone for AnyToDeviceEvent

source§

fn clone(&self) -> AnyToDeviceEvent

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AnyToDeviceEvent

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for AnyToDeviceEvent

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<ToDeviceEvent<ToDeviceDummyEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceDummyEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceForwardedRoomKeyEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceForwardedRoomKeyEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceKeyVerificationAcceptEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceKeyVerificationAcceptEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceKeyVerificationCancelEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceKeyVerificationCancelEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceKeyVerificationDoneEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceKeyVerificationDoneEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceKeyVerificationKeyEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceKeyVerificationKeyEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceKeyVerificationMacEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceKeyVerificationMacEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceKeyVerificationReadyEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceKeyVerificationReadyEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceKeyVerificationRequestEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceKeyVerificationRequestEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceKeyVerificationStartEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceKeyVerificationStartEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceRoomEncryptedEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceRoomEncryptedEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceRoomKeyEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceRoomKeyEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceRoomKeyRequestEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceRoomKeyRequestEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceSecretRequestEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceSecretRequestEvent) -> Self

Converts to this type from the input type.
source§

impl From<ToDeviceEvent<ToDeviceSecretSendEventContent>> for AnyToDeviceEvent

source§

fn from(c: ToDeviceSecretSendEvent) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,