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
MatrixId(&'a str)Either a fully qualified Matrix user ID, or just the localpart (as part of the ‘identifier’ field).
Third party identifier (as part of the ‘identifier’ field).
Show fields
Same as third-party identification with medium == msisdn, but with a non-canonicalised phone number.
Show fields
Trait Implementations
type Incoming = IncomingUserIdentifier
type Incoming = IncomingUserIdentifierThe ‘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