pub struct ToDeviceEvent<C: ToDeviceEventContent> {
    pub content: C,
    pub sender: OwnedUserId,
}
Expand description

An event sent using send-to-device messaging.

Fields§

§content: C

Data specific to the event type.

§sender: OwnedUserId

The fully-qualified ID of the user who sent this event.

Trait Implementations§

source§

impl<C: Clone + ToDeviceEventContent> Clone for ToDeviceEvent<C>

source§

fn clone(&self) -> ToDeviceEvent<C>

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<C: Debug + ToDeviceEventContent> Debug for ToDeviceEvent<C>

source§

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

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

impl<'de, C> Deserialize<'de> for ToDeviceEvent<C>

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.
source§

impl<C: ToDeviceEventContent> Serialize for ToDeviceEvent<C>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<C> RefUnwindSafe for ToDeviceEvent<C>
where C: RefUnwindSafe,

§

impl<C> Send for ToDeviceEvent<C>
where C: Send,

§

impl<C> Sync for ToDeviceEvent<C>
where C: Sync,

§

impl<C> Unpin for ToDeviceEvent<C>
where C: Unpin,

§

impl<C> UnwindSafe for ToDeviceEvent<C>
where C: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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.

§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

impl<T> Identity for T
where T: ?Sized,

§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
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 T
where 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 T
where 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 T
where 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 T
where 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

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 T
where T: for<'de> Deserialize<'de>,