Type Alias DeviceSignatures

Source
pub type DeviceSignatures = Signatures<OwnedUserId, DeviceId>;
Expand description

Map of device signatures, grouped by user.

Aliased Type§

struct DeviceSignatures(/* private fields */);

Implementations

Source§

impl<E: Ord, K: KeyName + ?Sized> Signatures<E, K>

Source

pub fn new() -> Self

Creates an empty signature map.

Source

pub fn insert_signature( &mut self, entity: E, key_identifier: OwnedSigningKeyId<K>, value: String, ) -> Option<String>

Add a signature for the given entity and key identifier.

If there was already one, it is returned.

Trait Implementations

Source§

impl<E, K> Clone for Signatures<E, K>
where E: Ord + Clone, K: KeyName + ?Sized,

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<E: Debug + Ord, K: Debug + KeyName + ?Sized> Debug for Signatures<E, K>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<E: Ord, K: KeyName + ?Sized> Default for Signatures<E, K>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<E: Ord, K: KeyName + ?Sized> Deref for Signatures<E, K>

Source§

type Target = BTreeMap<E, BTreeMap<OwnedKeyId<SigningKeyAlgorithm, K>, String>>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<E: Ord, K: KeyName + ?Sized> DerefMut for Signatures<E, K>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<'de, E, K: KeyName + ?Sized> Deserialize<'de> for Signatures<E, K>
where E: DeserializeOwned + Ord,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<E: Ord, K: KeyName + ?Sized> Extend<(E, OwnedKeyId<SigningKeyAlgorithm, K>, String)> for Signatures<E, K>

Source§

fn extend<T: IntoIterator<Item = (E, OwnedSigningKeyId<K>, String)>>( &mut self, iter: T, )

Extends a collection with the contents of an iterator. Read more
Source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
Source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Source§

impl<E: Ord, K: KeyName + ?Sized, const N: usize> From<[(E, OwnedKeyId<SigningKeyAlgorithm, K>, String); N]> for Signatures<E, K>

Source§

fn from(value: [(E, OwnedSigningKeyId<K>, String); N]) -> Self

Converts to this type from the input type.
Source§

impl<E: Ord, K: KeyName + ?Sized> FromIterator<(E, OwnedKeyId<SigningKeyAlgorithm, K>, String)> for Signatures<E, K>

Source§

fn from_iter<T: IntoIterator<Item = (E, OwnedSigningKeyId<K>, String)>>( iter: T, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<E: Ord + Clone, K: KeyName + ?Sized> IntoIterator for Signatures<E, K>

Source§

type Item = (E, OwnedKeyId<SigningKeyAlgorithm, K>, String)

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<E, K>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<E, K: KeyName + ?Sized> Serialize for Signatures<E, K>
where E: Serialize + Ord,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more