Struct ruma_common::Signatures
source · [−]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
sourceimpl<E: Ord, K: ?Sized> Signatures<E, K>
impl<E: Ord, K: ?Sized> Signatures<E, K>
Trait Implementations
sourceimpl<E: Clone + Ord, K: Clone + ?Sized> Clone for Signatures<E, K>
impl<E: Clone + Ord, K: Clone + ?Sized> Clone for Signatures<E, K>
sourcefn clone(&self) -> Signatures<E, K>
fn clone(&self) -> Signatures<E, K>
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<E: Default + Ord, K: Default + ?Sized> Default for Signatures<E, K>
impl<E: Default + Ord, K: Default + ?Sized> Default for Signatures<E, K>
sourcefn default() -> Signatures<E, K>
fn default() -> Signatures<E, K>
Returns the “default value” for a type. Read more
sourceimpl<'de, E: Ord, K: ?Sized> Deserialize<'de> for Signatures<E, K> where
E: Deserialize<'de>,
K: Deserialize<'de>,
impl<'de, E: Ord, K: ?Sized> Deserialize<'de> for Signatures<E, K> where
E: Deserialize<'de>,
K: Deserialize<'de>,
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
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
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