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: StringThe 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
sourceimpl Clone for KeysBackupRequest
impl Clone for KeysBackupRequest
sourcefn clone(&self) -> KeysBackupRequest
fn clone(&self) -> KeysBackupRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for KeysBackupRequest
impl Debug for KeysBackupRequest
sourceimpl From<KeysBackupRequest> for OutgoingRequests
impl From<KeysBackupRequest> for OutgoingRequests
sourcefn 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more