Struct ruma::events::direct::DirectUserIdentifier

source ·
pub struct DirectUserIdentifier(/* private fields */);
Available on crate feature events only.
Expand description

An user identifier, it can be a UserId or a third-party identifier like an email or a phone number.

There is no validation on this type, any string is allowed, but you can use as_user_id or into_user_id to try to get an UserId.

Implementations§

source§

impl DirectUserIdentifier

source

pub fn as_str(&self) -> &str

Creates a string slice from this DirectUserIdentifier.

source

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

Creates a byte slice from this DirectUserIdentifier.

source§

impl DirectUserIdentifier

source

pub fn as_user_id(&self) -> Option<&UserId>

Get this DirectUserIdentifier as an UserId if it is one.

Trait Implementations§

source§

impl AsRef<[u8]> for Box<DirectUserIdentifier>

source§

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

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

impl AsRef<[u8]> for DirectUserIdentifier

source§

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

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

impl AsRef<DirectUserIdentifier> for DirectUserIdentifier

source§

fn as_ref(&self) -> &DirectUserIdentifier

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

impl AsRef<DirectUserIdentifier> for OwnedDirectUserIdentifier

source§

fn as_ref(&self) -> &DirectUserIdentifier

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

impl AsRef<str> for Box<DirectUserIdentifier>

source§

fn as_ref(&self) -> &str

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

impl AsRef<str> for DirectUserIdentifier

source§

fn as_ref(&self) -> &str

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

impl Borrow<DirectUserIdentifier> for OwnedDirectUserIdentifier

source§

fn borrow(&self) -> &DirectUserIdentifier

Immutably borrows from an owned value. Read more
source§

impl Clone for Box<DirectUserIdentifier>

source§

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

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 DirectUserIdentifier

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

source§

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

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

impl Display for DirectUserIdentifier

source§

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

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

impl From<&DirectUserIdentifier> for Arc<DirectUserIdentifier>

source§

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

Converts to this type from the input type.
source§

impl From<&DirectUserIdentifier> for Box<DirectUserIdentifier>

source§

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

Converts to this type from the input type.
source§

impl From<&DirectUserIdentifier> for OwnedDirectUserIdentifier

source§

fn from(id: &DirectUserIdentifier) -> OwnedDirectUserIdentifier

Converts to this type from the input type.
source§

impl From<&DirectUserIdentifier> for Rc<DirectUserIdentifier>

source§

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

Converts to this type from the input type.
source§

impl From<&DirectUserIdentifier> for String

source§

fn from(id: &DirectUserIdentifier) -> String

Converts to this type from the input type.
source§

impl<'a> From<&'a UserId> for &'a DirectUserIdentifier

source§

fn from(value: &'a UserId) -> &'a DirectUserIdentifier

Converts to this type from the input type.
source§

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

source§

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

Converts to this type from the input type.
source§

impl From<&str> for Box<DirectUserIdentifier>

source§

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

Converts to this type from the input type.
source§

impl From<Box<str>> for Box<DirectUserIdentifier>

source§

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

Converts to this type from the input type.
source§

impl From<OwnedDirectUserIdentifier> for Box<DirectUserIdentifier>

source§

fn from(a: OwnedDirectUserIdentifier) -> Box<DirectUserIdentifier>

Converts to this type from the input type.
source§

impl From<String> for Box<DirectUserIdentifier>

source§

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

Converts to this type from the input type.
source§

impl Hash for DirectUserIdentifier

source§

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

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

impl Ord for DirectUserIdentifier

source§

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

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

impl PartialEq<&DirectUserIdentifier> for &UserId

source§

fn eq(&self, other: &&DirectUserIdentifier) -> 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.
source§

impl PartialEq<&DirectUserIdentifier> for Box<DirectUserIdentifier>

source§

fn eq(&self, other: &&DirectUserIdentifier) -> 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.
source§

impl PartialEq<&DirectUserIdentifier> for OwnedDirectUserIdentifier

source§

fn eq(&self, other: &&DirectUserIdentifier) -> 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.
source§

impl PartialEq<&DirectUserIdentifier> for OwnedUserId

source§

fn eq(&self, other: &&DirectUserIdentifier) -> 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.
source§

impl PartialEq<&UserId> for &DirectUserIdentifier

source§

fn eq(&self, other: &&UserId) -> 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.
source§

impl PartialEq<&str> for Box<DirectUserIdentifier>

source§

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

impl PartialEq<&str> for DirectUserIdentifier

source§

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

impl PartialEq<Box<DirectUserIdentifier>> for &DirectUserIdentifier

source§

fn eq(&self, other: &Box<DirectUserIdentifier>) -> 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.
source§

impl PartialEq<Box<DirectUserIdentifier>> for DirectUserIdentifier

source§

fn eq(&self, other: &Box<DirectUserIdentifier>) -> 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.
source§

impl PartialEq<DirectUserIdentifier> for &str

source§

fn eq(&self, other: &DirectUserIdentifier) -> 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.
source§

impl PartialEq<DirectUserIdentifier> for Box<DirectUserIdentifier>

source§

fn eq(&self, other: &DirectUserIdentifier) -> 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.
source§

impl PartialEq<DirectUserIdentifier> for OwnedDirectUserIdentifier

source§

fn eq(&self, other: &DirectUserIdentifier) -> 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.
source§

impl PartialEq<DirectUserIdentifier> for str

source§

fn eq(&self, other: &DirectUserIdentifier) -> 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.
source§

impl PartialEq<OwnedDirectUserIdentifier> for &DirectUserIdentifier

source§

fn eq(&self, other: &OwnedDirectUserIdentifier) -> 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.
source§

impl PartialEq<OwnedDirectUserIdentifier> for Box<DirectUserIdentifier>

source§

fn eq(&self, other: &OwnedDirectUserIdentifier) -> 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.
source§

impl PartialEq<OwnedDirectUserIdentifier> for DirectUserIdentifier

source§

fn eq(&self, other: &OwnedDirectUserIdentifier) -> 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.
source§

impl PartialEq<OwnedUserId> for &DirectUserIdentifier

source§

fn eq(&self, other: &OwnedUserId) -> 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.
source§

impl PartialEq<String> for Box<DirectUserIdentifier>

source§

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

impl PartialEq<String> for DirectUserIdentifier

source§

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

impl PartialEq<str> for Box<DirectUserIdentifier>

source§

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

impl PartialEq<str> for DirectUserIdentifier

source§

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

impl PartialEq for DirectUserIdentifier

source§

fn eq(&self, other: &DirectUserIdentifier) -> 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.
source§

impl PartialOrd for DirectUserIdentifier

source§

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

impl Serialize for DirectUserIdentifier

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 DirectUserIdentifier

source§

type Owned = OwnedDirectUserIdentifier

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> <DirectUserIdentifier 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 DirectUserIdentifier> for &'a UserId

source§

type Error = Error

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

fn try_from( value: &'a DirectUserIdentifier, ) -> Result<&'a UserId, <&'a UserId as TryFrom<&'a DirectUserIdentifier>>::Error>

Performs the conversion.
source§

impl TryFrom<&DirectUserIdentifier> for OwnedUserId

source§

type Error = Error

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

fn try_from( value: &DirectUserIdentifier, ) -> Result<OwnedUserId, <OwnedUserId as TryFrom<&DirectUserIdentifier>>::Error>

Performs the conversion.
source§

impl Eq for DirectUserIdentifier

source§

impl StructuralPartialEq for DirectUserIdentifier

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,

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§

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§

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