Enum matrix_sdk_base::ruma::api::client::uiaa::UserIdentifier
pub enum UserIdentifier {
UserIdOrLocalpart(String),
Email {
address: String,
},
Msisdn {
number: String,
},
PhoneNumber {
country: String,
phone: String,
},
// some variants omitted
}
Available on crate feature
api
and (crate features client
or server
) only.Expand description
Identification information for the user.
Variants§
UserIdOrLocalpart(String)
Either a fully qualified Matrix user ID, or just the localpart (as part of the ‘identifier’ field).
An email address.
Msisdn
A phone number in the MSISDN format.
PhoneNumber
Fields
§
country: String
The country that the phone number is from.
This is a two-letter uppercase ISO-3166-1 alpha-2 country code.
A phone number as a separate country code and phone number.
The homeserver will be responsible for canonicalizing this to the MSISDN format.
Implementations§
§impl UserIdentifier
impl UserIdentifier
pub fn third_party_id(medium: Medium, address: String) -> UserIdentifier
pub fn third_party_id(medium: Medium, address: String) -> UserIdentifier
Creates a new UserIdentifier
from the given third party identifier.
pub fn as_third_party_id(&self) -> Option<(&Medium, &str)>
pub fn as_third_party_id(&self) -> Option<(&Medium, &str)>
Get this UserIdentifier
as a third party identifier if it is one.
Trait Implementations§
§impl Clone for UserIdentifier
impl Clone for UserIdentifier
§fn clone(&self) -> UserIdentifier
fn clone(&self) -> UserIdentifier
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for UserIdentifier
impl Debug for UserIdentifier
§impl<'de> Deserialize<'de> for UserIdentifier
impl<'de> Deserialize<'de> for UserIdentifier
§fn deserialize<D>(
deserializer: D
) -> Result<UserIdentifier, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<UserIdentifier, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<&OwnedUserId> for UserIdentifier
impl From<&OwnedUserId> for UserIdentifier
§fn from(id: &OwnedUserId) -> UserIdentifier
fn from(id: &OwnedUserId) -> UserIdentifier
Converts to this type from the input type.
§impl From<OwnedUserId> for UserIdentifier
impl From<OwnedUserId> for UserIdentifier
§fn from(id: OwnedUserId) -> UserIdentifier
fn from(id: OwnedUserId) -> UserIdentifier
Converts to this type from the input type.
§impl PartialEq for UserIdentifier
impl PartialEq for UserIdentifier
§fn eq(&self, other: &UserIdentifier) -> bool
fn eq(&self, other: &UserIdentifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for UserIdentifier
impl Serialize for UserIdentifier
§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 Eq for UserIdentifier
impl StructuralEq for UserIdentifier
impl StructuralPartialEq for UserIdentifier
Auto Trait Implementations§
impl RefUnwindSafe for UserIdentifier
impl Send for UserIdentifier
impl Sync for UserIdentifier
impl Unpin for UserIdentifier
impl UnwindSafe for UserIdentifier
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> 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.