Struct ruma_common::events::ToDeviceEvent
source · [−]pub struct ToDeviceEvent<C: ToDeviceEventContent> {
pub content: C,
pub sender: OwnedUserId,
}Available on crate feature
events only.Expand description
An event sent using send-to-device messaging.
Fields
content: CData specific to the event type.
sender: OwnedUserIdThe fully-qualified ID of the user who sent this event.
Trait Implementations
sourceimpl<C: Clone + ToDeviceEventContent> Clone for ToDeviceEvent<C>
impl<C: Clone + ToDeviceEventContent> Clone for ToDeviceEvent<C>
sourcefn clone(&self) -> ToDeviceEvent<C>
fn clone(&self) -> ToDeviceEvent<C>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<C: Debug + ToDeviceEventContent> Debug for ToDeviceEvent<C>
impl<C: Debug + ToDeviceEventContent> Debug for ToDeviceEvent<C>
sourceimpl<'de, C: ToDeviceEventContent> Deserialize<'de> for ToDeviceEvent<C>
impl<'de, C: ToDeviceEventContent> Deserialize<'de> for ToDeviceEvent<C>
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<ToDeviceEvent<ToDeviceDummyEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceDummyEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceDummyEvent) -> Self
fn from(c: ToDeviceDummyEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceForwardedRoomKeyEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceForwardedRoomKeyEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceForwardedRoomKeyEvent) -> Self
fn from(c: ToDeviceForwardedRoomKeyEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceKeyVerificationAcceptEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceKeyVerificationAcceptEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceKeyVerificationAcceptEvent) -> Self
fn from(c: ToDeviceKeyVerificationAcceptEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceKeyVerificationCancelEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceKeyVerificationCancelEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceKeyVerificationCancelEvent) -> Self
fn from(c: ToDeviceKeyVerificationCancelEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceKeyVerificationDoneEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceKeyVerificationDoneEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceKeyVerificationDoneEvent) -> Self
fn from(c: ToDeviceKeyVerificationDoneEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceKeyVerificationKeyEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceKeyVerificationKeyEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceKeyVerificationKeyEvent) -> Self
fn from(c: ToDeviceKeyVerificationKeyEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceKeyVerificationMacEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceKeyVerificationMacEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceKeyVerificationMacEvent) -> Self
fn from(c: ToDeviceKeyVerificationMacEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceKeyVerificationReadyEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceKeyVerificationReadyEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceKeyVerificationReadyEvent) -> Self
fn from(c: ToDeviceKeyVerificationReadyEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceKeyVerificationRequestEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceKeyVerificationRequestEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceKeyVerificationRequestEvent) -> Self
fn from(c: ToDeviceKeyVerificationRequestEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceKeyVerificationStartEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceKeyVerificationStartEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceKeyVerificationStartEvent) -> Self
fn from(c: ToDeviceKeyVerificationStartEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceRoomEncryptedEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceRoomEncryptedEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceRoomEncryptedEvent) -> Self
fn from(c: ToDeviceRoomEncryptedEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceRoomKeyEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceRoomKeyEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceRoomKeyEvent) -> Self
fn from(c: ToDeviceRoomKeyEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceRoomKeyRequestEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceRoomKeyRequestEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceRoomKeyRequestEvent) -> Self
fn from(c: ToDeviceRoomKeyRequestEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceSecretRequestEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceSecretRequestEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceSecretRequestEvent) -> Self
fn from(c: ToDeviceSecretRequestEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceEvent<ToDeviceSecretSendEventContent>> for AnyToDeviceEvent
impl From<ToDeviceEvent<ToDeviceSecretSendEventContent>> for AnyToDeviceEvent
sourcefn from(c: ToDeviceSecretSendEvent) -> Self
fn from(c: ToDeviceSecretSendEvent) -> Self
Converts to this type from the input type.
sourceimpl<C: ToDeviceEventContent> Serialize for ToDeviceEvent<C>
impl<C: ToDeviceEventContent> Serialize for ToDeviceEvent<C>
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
