Enum ruma_client_api::backup::BackupAlgorithm
source · pub enum BackupAlgorithm {
MegolmBackupV1Curve25519AesSha2 {
public_key: Base64,
signatures: BTreeMap<OwnedUserId, BTreeMap<OwnedDeviceKeyId, String>>,
},
}Available on crate features
client or server only.Expand description
The algorithm used for storing backups.
Variants§
MegolmBackupV1Curve25519AesSha2
Fields
§
public_key: Base64The 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§
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