Struct ruma::DeviceKeyId

source ·
pub struct DeviceKeyId(/* private fields */);
Expand description

A key algorithm and a device id, combined with a ‘:’.

Implementations§

source§

impl DeviceKeyId

source

pub fn as_str(&self) -> &str

Available on crate feature events only.

Creates a string slice from this DeviceKeyId.

source

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

Available on crate feature events only.

Creates a byte slice from this DeviceKeyId.

source§

impl DeviceKeyId

source

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

Available on crate feature events only.

Try parsing a &str into an OwnedDeviceKeyId.

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

source

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

Available on crate feature events only.

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

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

source

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

Available on crate feature events only.

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

source

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

Available on crate feature events only.

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

source§

impl DeviceKeyId

source

pub fn from_parts( algorithm: DeviceKeyAlgorithm, device_id: &DeviceId ) -> OwnedDeviceKeyId

Available on crate feature events only.

Create a DeviceKeyId from a DeviceKeyAlgorithm and a DeviceId.

source

pub fn algorithm(&self) -> DeviceKeyAlgorithm

Available on crate feature events only.

Returns key algorithm of the device key ID.

source

pub fn device_id(&self) -> &DeviceId

Available on crate feature events only.

Returns device ID of the device key ID.

Trait Implementations§

source§

impl AsRef<[u8]> for DeviceKeyId

source§

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

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

impl AsRef<DeviceKeyId> for DeviceKeyId

source§

fn as_ref(&self) -> &DeviceKeyId

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

impl AsRef<DeviceKeyId> for OwnedDeviceKeyId

source§

fn as_ref(&self) -> &DeviceKeyId

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

impl AsRef<str> for DeviceKeyId

source§

fn as_ref(&self) -> &str

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

impl Borrow<DeviceKeyId> for OwnedDeviceKeyId

source§

fn borrow(&self) -> &DeviceKeyId

Immutably borrows from an owned value. Read more
source§

impl Clone for Box<DeviceKeyId>

source§

fn clone(&self) -> Box<DeviceKeyId>

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
source§

impl Debug for DeviceKeyId

source§

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

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Box<DeviceKeyId>

source§

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

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

impl Display for DeviceKeyId

source§

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

Formats the value using the given formatter. Read more
source§

impl From<&DeviceKeyId> for Arc<DeviceKeyId>

source§

fn from(s: &DeviceKeyId) -> Arc<DeviceKeyId>

Converts to this type from the input type.
source§

impl From<&DeviceKeyId> for Box<DeviceKeyId>

source§

fn from(id: &DeviceKeyId) -> Box<DeviceKeyId>

Converts to this type from the input type.
source§

impl From<&DeviceKeyId> for OwnedDeviceKeyId

source§

fn from(id: &DeviceKeyId) -> OwnedDeviceKeyId

Converts to this type from the input type.
source§

impl From<&DeviceKeyId> for Rc<DeviceKeyId>

source§

fn from(s: &DeviceKeyId) -> Rc<DeviceKeyId>

Converts to this type from the input type.
source§

impl From<&DeviceKeyId> for String

source§

fn from(id: &DeviceKeyId) -> String

Converts to this type from the input type.
source§

impl From<OwnedDeviceKeyId> for Box<DeviceKeyId>

source§

fn from(a: OwnedDeviceKeyId) -> Box<DeviceKeyId>

Converts to this type from the input type.
source§

impl Hash for DeviceKeyId

source§

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

Feeds this value into the given Hasher. Read more
source§

impl Ord for DeviceKeyId

source§

fn cmp(&self, other: &DeviceKeyId) -> Ordering

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

impl PartialEq<&DeviceKeyId> for OwnedDeviceKeyId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<&str> for DeviceKeyId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<Box<DeviceKeyId>> for &DeviceKeyId

source§

fn eq(&self, other: &Box<DeviceKeyId>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<Box<DeviceKeyId>> for DeviceKeyId

source§

fn eq(&self, other: &Box<DeviceKeyId>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<DeviceKeyId> for &str

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<DeviceKeyId> for OwnedDeviceKeyId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<DeviceKeyId> for str

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<OwnedDeviceKeyId> for &DeviceKeyId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<OwnedDeviceKeyId> for DeviceKeyId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<String> for DeviceKeyId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq<str> for DeviceKeyId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialEq for DeviceKeyId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl PartialOrd for DeviceKeyId

source§

fn partial_cmp(&self, other: &DeviceKeyId) -> 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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for DeviceKeyId

source§

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
source§

impl ToOwned for DeviceKeyId

§

type Owned = OwnedDeviceKeyId

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> <DeviceKeyId 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
source§

impl<'a> TryFrom<&'a str> for &'a DeviceKeyId

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<&str> for Box<DeviceKeyId>

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<String> for Box<DeviceKeyId>

§

type Error = Error

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

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

Performs the conversion.
source§

impl Eq for DeviceKeyId

source§

impl StructuralEq for DeviceKeyId

source§

impl StructuralPartialEq for DeviceKeyId

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

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

§

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

Compare self to key and return their ordering.
§

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

§

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

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

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

§

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

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

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

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

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

§

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

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§

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

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more