pub struct EncryptionInfo {
pub sender: OwnedUserId,
pub sender_device: Option<OwnedDeviceId>,
pub forwarder: Option<ForwarderInfo>,
pub algorithm_info: AlgorithmInfo,
pub verification_state: VerificationState,
}Expand description
Struct containing information on how an event was decrypted.
Fields§
§sender: OwnedUserIdThe user ID of the event sender, note this is untrusted data unless the
verification_state is Verified as well.
sender_device: Option<OwnedDeviceId>The device ID of the device that sent us the event, note this is
untrusted data unless verification_state is Verified as well.
forwarder: Option<ForwarderInfo>If the keys for this message were shared-on-invite as part of an MSC4268 key bundle, information about the forwarder.
algorithm_info: AlgorithmInfoInformation about the algorithm that was used to encrypt the event.
verification_state: VerificationStateThe verification state of the device that sent us the event, note this is the state of the device at the time of decryption. It may change in the future if a device gets verified or deleted.
Callers that persist this should mark the state as dirty when a device change is received down the sync.
Implementations§
Source§impl EncryptionInfo
impl EncryptionInfo
Sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
Helper to get the megolm session id used to encrypt.
Trait Implementations§
Source§impl Clone for EncryptionInfo
impl Clone for EncryptionInfo
Source§fn clone(&self) -> EncryptionInfo
fn clone(&self) -> EncryptionInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for EncryptionInfo
impl Debug for EncryptionInfo
Source§impl<'de> Deserialize<'de> for EncryptionInfo
impl<'de> Deserialize<'de> for EncryptionInfo
Source§fn 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>,
Source§impl PartialEq for EncryptionInfo
impl PartialEq for EncryptionInfo
Source§impl Serialize for EncryptionInfo
impl Serialize for EncryptionInfo
impl StructuralPartialEq for EncryptionInfo
Auto Trait Implementations§
impl Freeze for EncryptionInfo
impl RefUnwindSafe for EncryptionInfo
impl Send for EncryptionInfo
impl Sync for EncryptionInfo
impl Unpin for EncryptionInfo
impl UnwindSafe for EncryptionInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Arc<> Read more