Struct ruma_identifiers::KeyId[][src]

pub struct KeyId<A, K: ?Sized> { /* fields omitted */ }

A key algorithm and key name delimited by a colon

Implementations

impl<A, K: ?Sized> KeyId<A, K>[src]

pub fn from_parts(algorithm: A, key_name: &K) -> Self where
    A: AsRef<str>,
    K: AsRef<str>, 
[src]

Creates a KeyId from an algorithm and key name.

pub fn algorithm(&self) -> A where
    A: FromStr
[src]

Returns key algorithm of the key ID.

pub fn key_name<'a>(&'a self) -> &'a K where
    &'a K: From<&'a str>, 
[src]

Returns the key name of the key ID.

impl<A, K: ?Sized> KeyId<A, K>[src]

pub fn as_str(&self) -> &str[src]

Creates a string slice from this KeyId<A, K>

pub fn as_bytes(&self) -> &[u8][src]

Creates a byte slice from this KeyId<A, K>

Trait Implementations

impl<A, K: ?Sized> AsRef<str> for KeyId<A, K>[src]

impl<A, K: ?Sized> Clone for KeyId<A, K>[src]

impl<A, K: ?Sized> Debug for KeyId<A, K>[src]

impl<'de, A, K: ?Sized> Deserialize<'de> for KeyId<A, K>[src]

impl<A, K: ?Sized> Display for KeyId<A, K>[src]

impl<A, K: ?Sized> Eq for KeyId<A, K>[src]

impl<A, K: ?Sized> FromStr for KeyId<A, K>[src]

type Err = Error

The associated error which can be returned from parsing.

impl<A, K: ?Sized> Hash for KeyId<A, K>[src]

impl<A, K: ?Sized> Ord for KeyId<A, K>[src]

impl<A, K> PartialEq<&'_ str> for KeyId<A, K>[src]

impl<A, K: ?Sized> PartialEq<KeyId<A, K>> for KeyId<A, K>[src]

impl<A, K> PartialEq<String> for KeyId<A, K>[src]

impl<A, K> PartialEq<str> for KeyId<A, K>[src]

impl<A, K: ?Sized> PartialOrd<KeyId<A, K>> for KeyId<A, K>[src]

impl<A, K: ?Sized> Serialize for KeyId<A, K>[src]

impl<A, K: ?Sized> TryFrom<&'_ str> for KeyId<A, K>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<A, K: ?Sized> TryFrom<String> for KeyId<A, K> where
    A: FromStr,
    K: From<String>, 
[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<A, K: ?Sized> RefUnwindSafe for KeyId<A, K> where
    A: RefUnwindSafe,
    K: RefUnwindSafe

impl<A, K: ?Sized> Send for KeyId<A, K> where
    A: Send,
    K: Send

impl<A, K: ?Sized> Sync for KeyId<A, K> where
    A: Sync,
    K: Sync

impl<A, K: ?Sized> Unpin for KeyId<A, K> where
    A: Unpin,
    K: Unpin

impl<A, K: ?Sized> UnwindSafe for KeyId<A, K> where
    A: UnwindSafe,
    K: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,