Enum ruma_client_api::uiaa::UserIdentifier
source · pub enum UserIdentifier {
UserIdOrLocalpart(String),
Email {
address: String,
},
Msisdn {
number: String,
},
PhoneNumber {
country: String,
phone: String,
},
// some variants omitted
}
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
A phone number as a separate country code and phone number.
The homeserver will be responsible for canonicalizing this to the MSISDN format.
Fields
§
country: String
The country that the phone number is from.
This is a two-letter uppercase ISO-3166-1 alpha-2 country code.
Implementations§
source§impl UserIdentifier
impl UserIdentifier
sourcepub fn third_party_id(medium: Medium, address: String) -> Self
pub fn third_party_id(medium: Medium, address: String) -> Self
Creates a new UserIdentifier
from the given third party identifier.
sourcepub 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§
source§impl Clone for UserIdentifier
impl Clone for UserIdentifier
source§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 moresource§impl Debug for UserIdentifier
impl Debug for UserIdentifier
source§impl<'de> Deserialize<'de> for UserIdentifier
impl<'de> Deserialize<'de> for UserIdentifier
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<&OwnedUserId> for UserIdentifier
impl From<&OwnedUserId> for UserIdentifier
source§fn from(id: &OwnedUserId) -> Self
fn from(id: &OwnedUserId) -> Self
Converts to this type from the input type.
source§impl From<OwnedUserId> for UserIdentifier
impl From<OwnedUserId> for UserIdentifier
source§fn from(id: OwnedUserId) -> Self
fn from(id: OwnedUserId) -> Self
Converts to this type from the input type.
source§impl PartialEq for UserIdentifier
impl PartialEq for UserIdentifier
source§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 ==
.source§impl Serialize for UserIdentifier
impl Serialize for UserIdentifier
impl Eq for UserIdentifier
impl StructuralPartialEq for UserIdentifier
Auto Trait Implementations§
impl Freeze for UserIdentifier
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.