Enum ruma_client_api::r0::session::login::UserIdentifier [−][src]
pub enum UserIdentifier<'a> {
MatrixId(&'a str),
ThirdPartyId {
address: &'a str,
medium: Medium,
},
PhoneNumber {
country: &'a str,
phone: &'a str,
},
}Expand description
Identification information for the user.
Variants
Either a fully qualified Matrix user ID, or just the localpart (as part of the ‘identifier’ field).
Tuple Fields of MatrixId
0: &'a strThird party identifier (as part of the ‘identifier’ field).
Fields of ThirdPartyId
Same as third-party identification with medium == msisdn, but with a non-canonicalised phone number.
Fields of PhoneNumber
Trait Implementations
type Incoming = IncomingUserIdentifier
type Incoming = IncomingUserIdentifier
The ‘Incoming’ variant of Self.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<'a> RefUnwindSafe for UserIdentifier<'a>
impl<'a> Send for UserIdentifier<'a>
impl<'a> Sync for UserIdentifier<'a>
impl<'a> Unpin for UserIdentifier<'a>
impl<'a> UnwindSafe for UserIdentifier<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more