pub struct DeviceId(/* private fields */);
Expand description
A Matrix device ID.
Device identifiers in Matrix are completely opaque character sequences. This type is provided simply for its semantic value.
§Example
use ruma_common::{device_id, DeviceId, OwnedDeviceId};
let random_id = DeviceId::new();
assert_eq!(random_id.as_str().len(), 8);
let static_id = device_id!("01234567");
assert_eq!(static_id.as_str(), "01234567");
let ref_id: &DeviceId = "abcdefghi".into();
assert_eq!(ref_id.as_str(), "abcdefghi");
let owned_id: OwnedDeviceId = "ijklmnop".into();
assert_eq!(owned_id.as_str(), "ijklmnop");
Implementations§
Trait Implementations§
source§impl AsRef<DeviceId> for OwnedDeviceId
impl AsRef<DeviceId> for OwnedDeviceId
source§impl Borrow<DeviceId> for OwnedDeviceId
impl Borrow<DeviceId> for OwnedDeviceId
source§impl<'de> Deserialize<'de> for Box<DeviceId>
impl<'de> Deserialize<'de> for Box<DeviceId>
source§fn deserialize<D>(
deserializer: D,
) -> Result<Box<DeviceId>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Box<DeviceId>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a> From<&'a DeviceId> for &'a Base64PublicKeyOrDeviceId
impl<'a> From<&'a DeviceId> for &'a Base64PublicKeyOrDeviceId
source§fn from(value: &'a DeviceId) -> &'a Base64PublicKeyOrDeviceId
fn from(value: &'a DeviceId) -> &'a Base64PublicKeyOrDeviceId
Converts to this type from the input type.
source§impl From<&DeviceId> for OwnedDeviceId
impl From<&DeviceId> for OwnedDeviceId
source§fn from(id: &DeviceId) -> OwnedDeviceId
fn from(id: &DeviceId) -> OwnedDeviceId
Converts to this type from the input type.
source§impl PartialEq<&DeviceId> for OwnedDeviceId
impl PartialEq<&DeviceId> for OwnedDeviceId
source§impl PartialEq<&str> for DeviceId
impl PartialEq<&str> for DeviceId
source§impl PartialEq<Box<DeviceId>> for &DeviceId
impl PartialEq<Box<DeviceId>> for &DeviceId
source§impl PartialEq<Box<DeviceId>> for DeviceId
impl PartialEq<Box<DeviceId>> for DeviceId
source§impl PartialEq<DeviceId> for &str
impl PartialEq<DeviceId> for &str
source§impl PartialEq<DeviceId> for OwnedDeviceId
impl PartialEq<DeviceId> for OwnedDeviceId
source§impl PartialEq<DeviceId> for str
impl PartialEq<DeviceId> for str
source§impl PartialEq<OwnedDeviceId> for &DeviceId
impl PartialEq<OwnedDeviceId> for &DeviceId
source§fn eq(&self, other: &OwnedDeviceId) -> bool
fn eq(&self, other: &OwnedDeviceId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<OwnedDeviceId> for DeviceId
impl PartialEq<OwnedDeviceId> for DeviceId
source§fn eq(&self, other: &OwnedDeviceId) -> bool
fn eq(&self, other: &OwnedDeviceId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<String> for DeviceId
impl PartialEq<String> for DeviceId
source§impl PartialEq for DeviceId
impl PartialEq for DeviceId
source§impl PartialOrd for DeviceId
impl PartialOrd for DeviceId
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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 moresource§impl Serialize for DeviceId
impl Serialize for DeviceId
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
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 DeviceId
impl ToOwned for DeviceId
§type Owned = OwnedDeviceId
type Owned = OwnedDeviceId
The resulting type after obtaining ownership.
source§fn to_owned(&self) -> <DeviceId as ToOwned>::Owned
fn to_owned(&self) -> <DeviceId 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)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
impl Eq for DeviceId
impl StructuralPartialEq for DeviceId
Auto Trait Implementations§
impl Freeze for DeviceId
impl RefUnwindSafe for DeviceId
impl Send for DeviceId
impl !Sized for DeviceId
impl Sync for DeviceId
impl Unpin for DeviceId
impl UnwindSafe for DeviceId
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.