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
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 more
sourceimpl 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more