Struct ruma::KeyId [−][src]
pub struct KeyId<A, K> where
K: ?Sized, { /* fields omitted */ }Expand description
A key algorithm and key name delimited by a colon
Implementations
impl<A, K> KeyId<A, K> where
K: ?Sized, [src]
impl<A, K> KeyId<A, K> where
K: ?Sized, [src]Trait Implementations
impl<'de, A, K> Deserialize<'de> for KeyId<A, K> where
K: ?Sized, [src]
impl<'de, A, K> Deserialize<'de> for KeyId<A, K> where
K: ?Sized, [src]pub fn deserialize<D>(
deserializer: D
) -> Result<KeyId<A, K>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>, [src]
pub fn deserialize<D>(
deserializer: D
) -> Result<KeyId<A, K>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl<A, K> Ord for KeyId<A, K> where
K: ?Sized, [src]
impl<A, K> Ord for KeyId<A, K> where
K: ?Sized, [src]impl<A, K> PartialOrd<KeyId<A, K>> for KeyId<A, K> where
K: ?Sized, [src]
impl<A, K> PartialOrd<KeyId<A, K>> for KeyId<A, K> where
K: ?Sized, [src]pub fn partial_cmp(&self, other: &KeyId<A, K>) -> Option<Ordering>[src]
pub fn partial_cmp(&self, other: &KeyId<A, K>) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<A, K> Serialize for KeyId<A, K> where
K: ?Sized, [src]
impl<A, K> Serialize for KeyId<A, K> where
K: ?Sized, [src]pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, [src]
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, [src]Serialize this value into the given Serde serializer. Read more
impl<A, K> Eq for KeyId<A, K> where
K: ?Sized, [src]
K: ?Sized,
Auto Trait Implementations
impl<A, K: ?Sized> RefUnwindSafe for KeyId<A, K> where
A: RefUnwindSafe,
K: RefUnwindSafe,
A: RefUnwindSafe,
K: RefUnwindSafe,
impl<A, K: ?Sized> Send for KeyId<A, K> where
A: Send,
K: Send,
A: Send,
K: Send,
impl<A, K: ?Sized> Sync for KeyId<A, K> where
A: Sync,
K: Sync,
A: Sync,
K: Sync,
impl<A, K: ?Sized> Unpin for KeyId<A, K> where
A: Unpin,
K: Unpin,
A: Unpin,
K: Unpin,
impl<A, K: ?Sized> UnwindSafe for KeyId<A, K> where
A: UnwindSafe,
K: UnwindSafe,
A: UnwindSafe,
K: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized, [src]
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized, [src]pub fn equivalent(&self, key: &K) -> bool[src]
pub fn equivalent(&self, key: &K) -> bool[src]Compare self to key and return true if they are equal.
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>, pub fn vzip(self) -> V
impl<T> WithSubscriber for T[src]
impl<T> WithSubscriber for T[src]fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>, [src]
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>, [src]Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
fn with_current_subscriber(self) -> WithDispatch<Self>[src]
fn with_current_subscriber(self) -> WithDispatch<Self>[src]Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,