pub struct DecryptedOlmV1Event<C>where
C: MessageLikeEventContent,{
pub content: C,
pub sender: OwnedUserId,
pub recipient: OwnedUserId,
pub recipient_keys: OlmV1Keys,
pub keys: OlmV1Keys,
}
Available on crate feature
events
only.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