Struct ruma::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, K> Signatures<E, K> where
E: Ord,
K: ?Sized,
impl<E, K> Signatures<E, K> where
E: Ord,
K: ?Sized,
sourcepub fn new() -> Signatures<E, K>
pub fn new() -> Signatures<E, K>
Creates an empty signature map.
sourcepub fn insert(
&mut self,
entity: E,
key_identifier: OwnedKeyId<SigningKeyAlgorithm, K>,
value: String
) -> Option<String>
pub fn insert(
&mut self,
entity: E,
key_identifier: OwnedKeyId<SigningKeyAlgorithm, K>,
value: String
) -> Option<String>
Add a signature for the given server name and key identifier.
If there was already one, it is returned.
Trait Implementations
sourceimpl<E, K> Clone for Signatures<E, K> where
E: Clone + Ord,
K: Clone + ?Sized,
impl<E, K> Clone for Signatures<E, K> where
E: Clone + Ord,
K: Clone + ?Sized,
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, K> Default for Signatures<E, K> where
E: Default + Ord,
K: Default + ?Sized,
impl<E, K> Default for Signatures<E, K> where
E: Default + Ord,
K: Default + ?Sized,
sourcefn default() -> Signatures<E, K>
fn default() -> Signatures<E, K>
Returns the “default value” for a type. Read more
sourceimpl<'de, E, K> Deserialize<'de> for Signatures<E, K> where
E: Ord + Deserialize<'de>,
K: Deserialize<'de> + ?Sized,
impl<'de, E, K> Deserialize<'de> for Signatures<E, K> where
E: Ord + Deserialize<'de>,
K: Deserialize<'de> + ?Sized,
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Signatures<E, K>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Signatures<E, K>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<E, K> Serialize for Signatures<E, K> where
E: Ord + Serialize,
K: Serialize + ?Sized,
impl<E, K> Serialize for Signatures<E, K> where
E: Ord + Serialize,
K: Serialize + ?Sized,
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. 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