Struct matrix_sdk_base::ruma::DeviceId
pub struct DeviceId(/* private fields */);
Expand description
A Matrix key 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§
§impl DeviceId
impl DeviceId
pub fn new() -> OwnedDeviceId
Available on crate feature rand
only.
pub fn new() -> OwnedDeviceId
rand
only.Generates a random DeviceId
, suitable for assignment to a new device.
Trait Implementations§
§impl AsRef<DeviceId> for OwnedDeviceId
impl AsRef<DeviceId> for OwnedDeviceId
§impl Borrow<DeviceId> for OwnedDeviceId
impl Borrow<DeviceId> for OwnedDeviceId
§impl<'de> Deserialize<'de> for Box<DeviceId>
impl<'de> Deserialize<'de> for Box<DeviceId>
§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
§impl From<&DeviceId> for OwnedDeviceId
impl From<&DeviceId> for OwnedDeviceId
§fn from(id: &DeviceId) -> OwnedDeviceId
fn from(id: &DeviceId) -> OwnedDeviceId
Converts to this type from the input type.
§impl From<OwnedDeviceId> for Box<DeviceId>
impl From<OwnedDeviceId> for Box<DeviceId>
§fn from(a: OwnedDeviceId) -> Box<DeviceId>
fn from(a: OwnedDeviceId) -> Box<DeviceId>
Converts to this type from the input type.
§impl PartialEq<&DeviceId> for OwnedDeviceId
impl PartialEq<&DeviceId> for OwnedDeviceId
§impl PartialEq<Box<DeviceId>> for &DeviceId
impl PartialEq<Box<DeviceId>> for &DeviceId
§impl PartialEq<Box<DeviceId>> for DeviceId
impl PartialEq<Box<DeviceId>> for DeviceId
§impl PartialEq<DeviceId> for OwnedDeviceId
impl PartialEq<DeviceId> for OwnedDeviceId
§impl PartialEq<OwnedDeviceId> for &DeviceId
impl PartialEq<OwnedDeviceId> for &DeviceId
§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 ==
.§impl PartialEq<OwnedDeviceId> for DeviceId
impl PartialEq<OwnedDeviceId> for DeviceId
§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 ==
.§impl PartialOrd for DeviceId
impl PartialOrd for DeviceId
§fn partial_cmp(&self, other: &DeviceId) -> Option<Ordering>
fn partial_cmp(&self, other: &DeviceId) -> Option<Ordering>
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 more§impl Serialize for DeviceId
impl Serialize for DeviceId
§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
§impl ToOwned for DeviceId
impl ToOwned for DeviceId
§type Owned = OwnedDeviceId
type Owned = OwnedDeviceId
The resulting type after obtaining ownership.
§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 StructuralEq for DeviceId
impl StructuralPartialEq for DeviceId
Auto Trait Implementations§
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.