Struct ruma_client_api::keys::upload_signatures::v3::SignedKeys
source · [−]pub struct SignedKeys(_);
Expand description
A map of key IDs to signed key objects.
Implementations
sourceimpl SignedKeys
impl SignedKeys
sourcepub fn add_device_keys(
&mut self,
device_id: OwnedDeviceId,
device_keys: Raw<DeviceKeys>
)
pub fn add_device_keys(
&mut self,
device_id: OwnedDeviceId,
device_keys: Raw<DeviceKeys>
)
Add the given device keys.
sourcepub fn add_cross_signing_keys(
&mut self,
cross_signing_key_id: Box<str>,
cross_signing_keys: Raw<CrossSigningKey>
)
pub fn add_cross_signing_keys(
&mut self,
cross_signing_key_id: Box<str>,
cross_signing_keys: Raw<CrossSigningKey>
)
Add the given cross signing keys.
sourcepub fn iter(&self) -> SignedKeysIter<'_>ⓘNotable traits for SignedKeysIter<'a>impl<'a> Iterator for SignedKeysIter<'a> type Item = (&'a str, &'a RawJsonValue);
pub fn iter(&self) -> SignedKeysIter<'_>ⓘNotable traits for SignedKeysIter<'a>impl<'a> Iterator for SignedKeysIter<'a> type Item = (&'a str, &'a RawJsonValue);
Returns an iterator over the keys.
Trait Implementations
sourceimpl Clone for SignedKeys
impl Clone for SignedKeys
sourcefn clone(&self) -> SignedKeys
fn clone(&self) -> SignedKeys
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 SignedKeys
impl Debug for SignedKeys
sourceimpl Default for SignedKeys
impl Default for SignedKeys
sourcefn default() -> SignedKeys
fn default() -> SignedKeys
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for SignedKeys
impl<'de> Deserialize<'de> for SignedKeys
sourcefn 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
sourceimpl<'a> IntoIterator for &'a SignedKeys
impl<'a> IntoIterator for &'a SignedKeys
sourceimpl Serialize for SignedKeys
impl Serialize for SignedKeys
Auto Trait Implementations
impl RefUnwindSafe for SignedKeys
impl Send for SignedKeys
impl Sync for SignedKeys
impl Unpin for SignedKeys
impl UnwindSafe for SignedKeys
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