Type Alias DeviceKeyId

pub type DeviceKeyId = KeyId<DeviceKeyAlgorithm, DeviceId>;
Expand description

Algorithm + key name for device keys.

Aliased Type§

struct DeviceKeyId(/* private fields */);

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 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"));
§

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>.

Trait Implementations

§

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<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> 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<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> 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<&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<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 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 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, K> Eq for KeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,