matrix_sdk::ruma

Struct KeyId

pub struct KeyId<A, K>(/* private fields */)
where
    A: KeyAlgorithm,
    K: KeyName + ?Sized;
Expand description

A key algorithm and key name delimited by a colon.

Examples of the use of this struct are DeviceKeyId, which identifies a Ed25519 or Curve25519 device key, and CrossSigningKeyId, which identifies a user’s cross signing key.

This format of identifier is often used in the signatures field of signed JSON where it is referred to as a “signing key identifier”.

This struct is rarely used directly - instead you should expect to use one of the type aliases that rely on it like CrossSigningKeyId or DeviceSigningKeyId.

§Examples

To parse a colon-separated identifier:

use ruma_common::DeviceKeyId;

let k = DeviceKeyId::parse("ed25519:1").unwrap();
assert_eq!(k.algorithm().as_str(), "ed25519");
assert_eq!(k.key_name(), "1");

To construct a colon-separated identifier from its parts:

use ruma_common::{DeviceKeyAlgorithm, DeviceKeyId};

let k = DeviceKeyId::from_parts(DeviceKeyAlgorithm::Curve25519, "MYDEVICE".into());
assert_eq!(k.as_str(), "curve25519:MYDEVICE");

Implementations§

§

impl<A, K> KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

pub fn as_str(&self) -> &str

Creates a string slice from this KeyId.

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

Creates a byte slice from this KeyId.

§

impl<A, K> KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

pub fn parse(s: impl AsRef<str>) -> Result<OwnedKeyId<A, K>, Error>

Try parsing a &str into an OwnedKeyId.

The same can also be done using FromStr, TryFrom or TryInto. This function is simply more constrained and thus useful in generic contexts.

pub fn parse_box( s: impl AsRef<str> + Into<Box<str>>, ) -> Result<Box<KeyId<A, K>>, Error>

Try parsing a &str into a Box<KeyId>.

The same can also be done using FromStr, TryFrom or TryInto. This function is simply more constrained and thus useful in generic contexts.

pub fn parse_rc( s: impl AsRef<str> + Into<Rc<str>>, ) -> Result<Rc<KeyId<A, K>>, Error>

Try parsing a &str into an Rc<KeyId>.

pub fn parse_arc( s: impl AsRef<str> + Into<Arc<str>>, ) -> Result<Arc<KeyId<A, K>>, Error>

Try parsing a &str into an Arc<KeyId>.

§

impl<A, K> KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

pub fn from_parts(algorithm: A, key_name: &K) -> OwnedKeyId<A, K>

Creates a new KeyId from an algorithm and key name.

pub fn algorithm(&self) -> A

Returns key algorithm of the key ID - the part that comes before the colon.

§Example
use ruma_common::{DeviceKeyAlgorithm, DeviceKeyId};

let k = DeviceKeyId::parse("ed25519:1").unwrap();
assert_eq!(k.algorithm(), DeviceKeyAlgorithm::Ed25519);

pub fn key_name<'a>(&'a self) -> &'a K
where &'a K: TryFrom<&'a str>,

Returns the key name of the key ID - the part that comes after the colon.

§Example
use ruma_common::{device_id, DeviceKeyId};

let k = DeviceKeyId::parse("ed25519:DEV1").unwrap();
assert_eq!(k.key_name(), device_id!("DEV1"));

Trait Implementations§

§

impl<A, K> AsRef<[u8]> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<A, K> AsRef<[u8]> for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<A, K> AsRef<KeyId<A, K>> for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn as_ref(&self) -> &KeyId<A, K>

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<A, K> AsRef<KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn as_ref(&self) -> &KeyId<A, K>

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<A, K> AsRef<str> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<A, K> AsRef<str> for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<A, K> Borrow<KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn borrow(&self) -> &KeyId<A, K>

Immutably borrows from an owned value. Read more
§

impl<A, K> Clone for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn clone(&self) -> Box<KeyId<A, K>>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<A, K> Debug for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de, A, K> Deserialize<'de> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn deserialize<D>( deserializer: D, ) -> Result<Box<KeyId<A, K>>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<A, K> Display for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<A, K> From<&KeyId<A, K>> for Arc<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn from(s: &KeyId<A, K>) -> Arc<KeyId<A, K>>

Converts to this type from the input type.
§

impl<A, K> From<&KeyId<A, K>> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn from(id: &KeyId<A, K>) -> Box<KeyId<A, K>>

Converts to this type from the input type.
§

impl<A, K> From<&KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn from(id: &KeyId<A, K>) -> OwnedKeyId<A, K>

Converts to this type from the input type.
§

impl<A, K> From<&KeyId<A, K>> for Rc<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn from(s: &KeyId<A, K>) -> Rc<KeyId<A, K>>

Converts to this type from the input type.
§

impl<A, K> From<&KeyId<A, K>> for String
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn from(id: &KeyId<A, K>) -> String

Converts to this type from the input type.
§

impl<A, K> From<OwnedKeyId<A, K>> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn from(a: OwnedKeyId<A, K>) -> Box<KeyId<A, K>>

Converts to this type from the input type.
§

impl<A, K> FromStr for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str( s: &str, ) -> Result<Box<KeyId<A, K>>, <Box<KeyId<A, K>> as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl<A, K> Hash for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
§

impl<A, K> Ord for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn cmp(&self, other: &KeyId<A, K>) -> Ordering

This method returns an Ordering between self and other. Read more
§

impl<A, K> PartialEq<&KeyId<A, K>> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &&KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<&KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &&KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<&str> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<&str> for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<Box<KeyId<A, K>>> for &KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &Box<KeyId<A, K>>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<Box<KeyId<A, K>>> for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &Box<KeyId<A, K>>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<KeyId<A, K>> for &str
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<KeyId<A, K>> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<KeyId<A, K>> for String
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<KeyId<A, K>> for str
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<OwnedKeyId<A, K>> for &KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &OwnedKeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<OwnedKeyId<A, K>> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &OwnedKeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<OwnedKeyId<A, K>> for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &OwnedKeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<String> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &String) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<String> for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &String) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<str> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq<str> for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialEq for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<A, K> PartialOrd for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

fn partial_cmp(&self, other: &KeyId<A, K>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater 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 A: KeyAlgorithm, K: KeyName + ?Sized,

§

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
§

impl<A, K> ToOwned for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

type Owned = OwnedKeyId<A, K>

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> <KeyId<A, K> as ToOwned>::Owned

Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · Source§

fn clone_into(&self, target: &mut Self::Owned)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<'a, A, K> TryFrom<&'a str> for &'a KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( s: &'a str, ) -> Result<&'a KeyId<A, K>, <&'a KeyId<A, K> as TryFrom<&'a str>>::Error>

Performs the conversion.
§

impl<A, K> TryFrom<&str> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( s: &str, ) -> Result<Box<KeyId<A, K>>, <Box<KeyId<A, K>> as TryFrom<&str>>::Error>

Performs the conversion.
§

impl<A, K> TryFrom<String> for Box<KeyId<A, K>>
where A: KeyAlgorithm, K: KeyName + ?Sized,

§

type Error = Error

The type returned in the event of a conversion error.
§

fn try_from( s: String, ) -> Result<Box<KeyId<A, K>>, <Box<KeyId<A, K>> as TryFrom<String>>::Error>

Performs the conversion.
§

impl<A, K> Eq for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Auto Trait Implementations§

§

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

§

impl<A, K> RefUnwindSafe for KeyId<A, K>

§

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

§

impl<A, K> !Sized for KeyId<A, K>

§

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

§

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

§

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

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

Source§

const WITNESS: W = W::MAKE

A constant of the type witness
Source§

impl<T> Identity for T
where T: ?Sized,

Source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
Source§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more