Struct ruma::Base64PublicKeyOrDeviceId

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

A Matrix ID that can be either a DeviceId or a Base64PublicKey.

Device identifiers in Matrix are completely opaque character sequences and cross-signing keys are identified by their base64-encoded public key. This type is provided simply for its semantic value.

It is not recommended to construct this type directly, it should instead be converted from a DeviceId or a Base64PublicKey.

§Example

use ruma_common::{Base64PublicKeyOrDeviceId, OwnedBase64PublicKeyOrDeviceId};

let ref_id: &Base64PublicKeyOrDeviceId = "abcdefghi".into();
assert_eq!(ref_id.as_str(), "abcdefghi");

let owned_id: OwnedBase64PublicKeyOrDeviceId = "ijklmnop".into();
assert_eq!(owned_id.as_str(), "ijklmnop");

Implementations§

source§

impl Base64PublicKeyOrDeviceId

source

pub fn as_str(&self) -> &str

Creates a string slice from this Base64PublicKeyOrDeviceId.

source

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

Creates a byte slice from this Base64PublicKeyOrDeviceId.

Trait Implementations§

source§

impl AsRef<[u8]> for Base64PublicKeyOrDeviceId

source§

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

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

impl AsRef<Base64PublicKeyOrDeviceId> for Base64PublicKeyOrDeviceId

source§

fn as_ref(&self) -> &Base64PublicKeyOrDeviceId

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

impl AsRef<Base64PublicKeyOrDeviceId> for OwnedBase64PublicKeyOrDeviceId

source§

fn as_ref(&self) -> &Base64PublicKeyOrDeviceId

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

impl AsRef<str> for Base64PublicKeyOrDeviceId

source§

fn as_ref(&self) -> &str

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

impl Borrow<Base64PublicKeyOrDeviceId> for OwnedBase64PublicKeyOrDeviceId

source§

fn borrow(&self) -> &Base64PublicKeyOrDeviceId

Immutably borrows from an owned value. Read more
source§

impl Clone for Box<Base64PublicKeyOrDeviceId>

source§

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

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 Base64PublicKeyOrDeviceId

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

source§

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

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

impl Display for Base64PublicKeyOrDeviceId

source§

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

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

impl<'a> From<&'a Base64PublicKey> for &'a Base64PublicKeyOrDeviceId

source§

fn from(value: &'a Base64PublicKey) -> &'a Base64PublicKeyOrDeviceId

Converts to this type from the input type.
source§

impl From<&Base64PublicKeyOrDeviceId> for Arc<Base64PublicKeyOrDeviceId>

source§

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

Converts to this type from the input type.
source§

impl From<&Base64PublicKeyOrDeviceId> for Box<Base64PublicKeyOrDeviceId>

source§

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

Converts to this type from the input type.
source§

impl From<&Base64PublicKeyOrDeviceId> for OwnedBase64PublicKeyOrDeviceId

source§

fn from(id: &Base64PublicKeyOrDeviceId) -> OwnedBase64PublicKeyOrDeviceId

Converts to this type from the input type.
source§

impl From<&Base64PublicKeyOrDeviceId> for Rc<Base64PublicKeyOrDeviceId>

source§

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

Converts to this type from the input type.
source§

impl From<&Base64PublicKeyOrDeviceId> for String

source§

fn from(id: &Base64PublicKeyOrDeviceId) -> String

Converts to this type from the input type.
source§

impl<'a> From<&'a DeviceId> for &'a Base64PublicKeyOrDeviceId

source§

fn from(value: &'a DeviceId) -> &'a Base64PublicKeyOrDeviceId

Converts to this type from the input type.
source§

impl<'a> From<&'a str> for &'a Base64PublicKeyOrDeviceId

source§

fn from(s: &'a str) -> &'a Base64PublicKeyOrDeviceId

Converts to this type from the input type.
source§

impl From<&str> for Box<Base64PublicKeyOrDeviceId>

source§

fn from(s: &str) -> Box<Base64PublicKeyOrDeviceId>

Converts to this type from the input type.
source§

impl From<Box<str>> for Box<Base64PublicKeyOrDeviceId>

source§

fn from(s: Box<str>) -> Box<Base64PublicKeyOrDeviceId>

Converts to this type from the input type.
source§

impl From<OwnedBase64PublicKeyOrDeviceId> for Box<Base64PublicKeyOrDeviceId>

source§

fn from(a: OwnedBase64PublicKeyOrDeviceId) -> Box<Base64PublicKeyOrDeviceId>

Converts to this type from the input type.
source§

impl From<String> for Box<Base64PublicKeyOrDeviceId>

source§

fn from(s: String) -> Box<Base64PublicKeyOrDeviceId>

Converts to this type from the input type.
source§

impl Hash for Base64PublicKeyOrDeviceId

source§

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

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

impl KeyName for Base64PublicKeyOrDeviceId

source§

fn validate(_s: &str) -> Result<(), Error>

Validate the given string for this name.
source§

impl Ord for Base64PublicKeyOrDeviceId

source§

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

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

impl PartialEq<&Base64PublicKeyOrDeviceId> for OwnedBase64PublicKeyOrDeviceId

source§

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

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<Base64PublicKeyOrDeviceId> for &str

source§

fn eq(&self, other: &Base64PublicKeyOrDeviceId) -> 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<Base64PublicKeyOrDeviceId> for OwnedBase64PublicKeyOrDeviceId

source§

fn eq(&self, other: &Base64PublicKeyOrDeviceId) -> 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<Base64PublicKeyOrDeviceId> for str

source§

fn eq(&self, other: &Base64PublicKeyOrDeviceId) -> 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<Base64PublicKeyOrDeviceId>> for &Base64PublicKeyOrDeviceId

source§

fn eq(&self, other: &Box<Base64PublicKeyOrDeviceId>) -> 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<Base64PublicKeyOrDeviceId>> for Base64PublicKeyOrDeviceId

source§

fn eq(&self, other: &Box<Base64PublicKeyOrDeviceId>) -> 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<OwnedBase64PublicKeyOrDeviceId> for &Base64PublicKeyOrDeviceId

source§

fn eq(&self, other: &OwnedBase64PublicKeyOrDeviceId) -> 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<OwnedBase64PublicKeyOrDeviceId> for Base64PublicKeyOrDeviceId

source§

fn eq(&self, other: &OwnedBase64PublicKeyOrDeviceId) -> 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 Base64PublicKeyOrDeviceId

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 Base64PublicKeyOrDeviceId

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 Base64PublicKeyOrDeviceId

source§

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

source§

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

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 Base64PublicKeyOrDeviceId

§

type Owned = OwnedBase64PublicKeyOrDeviceId

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> <Base64PublicKeyOrDeviceId 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 Eq for Base64PublicKeyOrDeviceId

source§

impl StructuralPartialEq for Base64PublicKeyOrDeviceId

Auto Trait Implementations§

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

§

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§

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 T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more