Enum matrix_sdk_base::ruma::api::client::backup::BackupAlgorithm
#[non_exhaustive]pub enum BackupAlgorithm {
MegolmBackupV1Curve25519AesSha2 {
public_key: Base64,
signatures: BTreeMap<OwnedUserId, BTreeMap<OwnedDeviceKeyId, String>>,
},
}
Available on crate feature
api
and (crate features client
or server
) only.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
Fields
§
public_key: Base64
The curve25519 public key used to encrypt the backups, encoded in unpadded base64.
§
signatures: BTreeMap<OwnedUserId, BTreeMap<OwnedDeviceKeyId, String>>
Signatures of the auth_data as Signed JSON.
m.megolm_backup.v1.curve25519-aes-sha2
backup algorithm.
Trait Implementations§
§impl Clone for BackupAlgorithm
impl Clone for BackupAlgorithm
§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 more§impl Debug for BackupAlgorithm
impl Debug for BackupAlgorithm
§impl<'de> Deserialize<'de> for BackupAlgorithm
impl<'de> Deserialize<'de> for BackupAlgorithm
§fn deserialize<__D>(
__deserializer: __D
) -> Result<BackupAlgorithm, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<BackupAlgorithm, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Serialize for BackupAlgorithm
impl Serialize for BackupAlgorithm
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
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