Struct matrix_sdk_crypto::EncryptionSettings
source · [−]pub struct EncryptionSettings {
pub algorithm: EventEncryptionAlgorithm,
pub rotation_period: Duration,
pub rotation_period_msgs: u64,
pub history_visibility: HistoryVisibility,
pub only_allow_trusted_devices: bool,
}Expand description
Settings for an encrypted room.
This determines the algorithm and rotation periods of a group session.
Fields
algorithm: EventEncryptionAlgorithmThe encryption algorithm that should be used in the room.
rotation_period: DurationHow long the session should be used before changing it.
rotation_period_msgs: u64How many messages should be sent before changing the session.
history_visibility: HistoryVisibilityThe history visibility of the room when the session was created.
only_allow_trusted_devices: boolShould untrusted devices receive the room key, or should they be excluded from the conversation.
Implementations
Trait Implementations
sourceimpl Clone for EncryptionSettings
impl Clone for EncryptionSettings
sourcefn clone(&self) -> EncryptionSettings
fn clone(&self) -> EncryptionSettings
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 Debug for EncryptionSettings
impl Debug for EncryptionSettings
sourceimpl Default for EncryptionSettings
impl Default for EncryptionSettings
sourceimpl<'de> Deserialize<'de> for EncryptionSettings
impl<'de> Deserialize<'de> for EncryptionSettings
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 Serialize for EncryptionSettings
impl Serialize for EncryptionSettings
Auto Trait Implementations
impl RefUnwindSafe for EncryptionSettings
impl Send for EncryptionSettings
impl Sync for EncryptionSettings
impl Unpin for EncryptionSettings
impl UnwindSafe for EncryptionSettings
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