Struct ruma_identifiers::Signatures [−][src]
Expand description
Map of all signatures, grouped by entity
let key_identifier = KeyId::from_parts(SigningKeyAlgorithm::Ed25519, "1"); let mut signatures = Signatures::new(); let server_name = server_name!("example.org"); let signature = "YbJva03ihSj5mPk+CHMJKUKlCXCPFXjXOK6VqBnN9nA2evksQcTGn6hwQfrgRHIDDXO2le49x7jnWJHMJrJoBQ"; signatures.insert(server_name, key_identifier, signature.into());
Implementations
Add a signature for the given server name and key identifier.
If there was already one, it is returned.
Trait Implementations
Auto Trait Implementations
impl<E, K: ?Sized> RefUnwindSafe for Signatures<E, K> where
E: RefUnwindSafe,
K: RefUnwindSafe, impl<E, K: ?Sized> Send for Signatures<E, K> where
E: Send,
K: Send, impl<E, K: ?Sized> Sync for Signatures<E, K> where
E: Sync,
K: Sync, impl<E, K: ?Sized> Unpin for Signatures<E, K>impl<E, K: ?Sized> UnwindSafe for Signatures<E, K> where
E: RefUnwindSafe,
K: RefUnwindSafe, Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V