Enum matrix_sdk_base::ruma::api::client::uiaa::UserIdentifier
source · 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
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) -> UserIdentifier
pub fn third_party_id(medium: Medium, address: String) -> UserIdentifier
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<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
source§impl From<&OwnedUserId> for UserIdentifier
impl From<&OwnedUserId> for UserIdentifier
source§fn from(id: &OwnedUserId) -> UserIdentifier
fn from(id: &OwnedUserId) -> UserIdentifier
Converts to this type from the input type.
source§impl From<OwnedUserId> for UserIdentifier
impl From<OwnedUserId> for UserIdentifier
source§fn from(id: OwnedUserId) -> UserIdentifier
fn from(id: OwnedUserId) -> UserIdentifier
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
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
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
)§impl<T> CompatExt for T
impl<T> CompatExt for T
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.source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more