Struct ruma::events::DecryptedOlmV1Event
source · pub struct DecryptedOlmV1Event<C>where
C: MessageLikeEventContent,{
pub content: C,
pub sender: OwnedUserId,
pub recipient: OwnedUserId,
pub recipient_keys: OlmV1Keys,
pub keys: OlmV1Keys,
}
Expand description
The decrypted payload of an m.olm.v1.curve25519-aes-sha2
event.
Fields§
§content: C
Data specific to the event type.
sender: OwnedUserId
The fully-qualified ID of the user who sent this event.
recipient: OwnedUserId
The fully-qualified ID of the intended recipient this event.
recipient_keys: OlmV1Keys
The recipient’s ed25519 key.
keys: OlmV1Keys
The sender’s ed25519 key.
Trait Implementations§
source§impl<C> Clone for DecryptedOlmV1Event<C>where
C: Clone + MessageLikeEventContent,
impl<C> Clone for DecryptedOlmV1Event<C>where
C: Clone + MessageLikeEventContent,
source§fn clone(&self) -> DecryptedOlmV1Event<C>
fn clone(&self) -> DecryptedOlmV1Event<C>
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<C> Debug for DecryptedOlmV1Event<C>where
C: Debug + MessageLikeEventContent,
impl<C> Debug for DecryptedOlmV1Event<C>where
C: Debug + MessageLikeEventContent,
source§impl<'de, C> Deserialize<'de> for DecryptedOlmV1Event<C>where
C: MessageLikeEventContent + EventContentFromType,
impl<'de, C> Deserialize<'de> for DecryptedOlmV1Event<C>where
C: MessageLikeEventContent + EventContentFromType,
source§fn deserialize<D>(
deserializer: D,
) -> Result<DecryptedOlmV1Event<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<DecryptedOlmV1Event<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<C> Freeze for DecryptedOlmV1Event<C>where
C: Freeze,
impl<C> RefUnwindSafe for DecryptedOlmV1Event<C>where
C: RefUnwindSafe,
impl<C> Send for DecryptedOlmV1Event<C>where
C: Send,
impl<C> Sync for DecryptedOlmV1Event<C>where
C: Sync,
impl<C> Unpin for DecryptedOlmV1Event<C>where
C: Unpin,
impl<C> UnwindSafe for DecryptedOlmV1Event<C>where
C: UnwindSafe,
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
)