Enum ruma_client_api::backup::BackupAlgorithm
source · #[non_exhaustive]pub enum BackupAlgorithm {
MegolmBackupV1Curve25519AesSha2 {
public_key: Base64,
signatures: CrossSigningOrDeviceSignatures,
},
}
Expand description
The algorithm used for storing backups.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MegolmBackupV1Curve25519AesSha2
m.megolm_backup.v1.curve25519-aes-sha2
backup algorithm.
Fields
§
public_key: Base64
The curve25519 public key used to encrypt the backups, encoded in unpadded base64.
§
signatures: CrossSigningOrDeviceSignatures
Signatures of the auth_data as Signed JSON.
Trait Implementations§
source§impl Clone for BackupAlgorithm
impl Clone for BackupAlgorithm
source§fn clone(&self) -> BackupAlgorithm
fn clone(&self) -> BackupAlgorithm
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 BackupAlgorithm
impl Debug for BackupAlgorithm
source§impl<'de> Deserialize<'de> for BackupAlgorithm
impl<'de> Deserialize<'de> for BackupAlgorithm
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BackupAlgorithm
impl RefUnwindSafe for BackupAlgorithm
impl Send for BackupAlgorithm
impl Sync for BackupAlgorithm
impl Unpin for BackupAlgorithm
impl UnwindSafe for BackupAlgorithm
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
)