Struct matrix_sdk_crypto::requests::KeysBackupRequest
source · pub struct KeysBackupRequest {
pub version: String,
pub rooms: BTreeMap<OwnedRoomId, RoomKeyBackup>,
}
Expand description
A request that will back up a batch of room keys to the server.
Fields§
§version: String
The backup version that these room keys should be part of.
rooms: BTreeMap<OwnedRoomId, RoomKeyBackup>
The map from room id to a backed up room key that we’re going to upload to the server.
Trait Implementations§
source§impl Clone for KeysBackupRequest
impl Clone for KeysBackupRequest
source§fn clone(&self) -> KeysBackupRequest
fn clone(&self) -> KeysBackupRequest
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 KeysBackupRequest
impl Debug for KeysBackupRequest
source§impl From<KeysBackupRequest> for OutgoingRequests
impl From<KeysBackupRequest> for OutgoingRequests
source§fn from(r: KeysBackupRequest) -> Self
fn from(r: KeysBackupRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for KeysBackupRequest
impl Send for KeysBackupRequest
impl Sync for KeysBackupRequest
impl Unpin for KeysBackupRequest
impl UnwindSafe for KeysBackupRequest
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