Struct matrix_sdk::encryption::EncryptionSettings
source · pub struct EncryptionSettings {
pub auto_enable_cross_signing: bool,
pub backup_download_strategy: BackupDownloadStrategy,
pub auto_enable_backups: bool,
}
Expand description
Settings for end-to-end encryption features.
Fields§
§auto_enable_cross_signing: bool
Automatically bootstrap cross-signing for a user once they’re logged, in case it’s not already done yet.
This requires to login with a username and password, or that MSC3967 is enabled on the server, as of 2023-10-20.
backup_download_strategy: BackupDownloadStrategy
Select a strategy to download room keys from the backup, by default room keys won’t be downloaded from the backup automatically.
Take a look at the BackupDownloadStrategy
enum for more options.
auto_enable_backups: bool
Automatically create a backup version if no backup exists.
Trait Implementations§
source§impl Clone for EncryptionSettings
impl Clone for EncryptionSettings
source§fn clone(&self) -> EncryptionSettings
fn clone(&self) -> EncryptionSettings
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 Debug for EncryptionSettings
impl Debug for EncryptionSettings
source§impl Default for EncryptionSettings
impl Default for EncryptionSettings
source§fn default() -> EncryptionSettings
fn default() -> EncryptionSettings
Returns the “default value” for a type. Read more
impl Copy for EncryptionSettings
Auto Trait Implementations§
impl Freeze for EncryptionSettings
impl RefUnwindSafe for EncryptionSettings
impl Send for EncryptionSettings
impl Sync for EncryptionSettings
impl Unpin for EncryptionSettings
impl UnwindSafe for EncryptionSettings
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
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more