Enum ruma::api::client::r0::uiaa::AuthData[][src]

#[non_exhaustive]
pub enum AuthData<'a> {
    Password(Password<'a>),
    ReCaptcha(ReCaptcha<'a>),
    Token(Token<'a>),
    OAuth2(OAuth2<'a>),
    EmailIdentity(EmailIdentity<'a>),
    Msisdn(Msisdn<'a>),
    Dummy(Dummy<'a>),
    FallbackAcknowledgement(FallbackAcknowledgement<'a>),
    // some variants omitted
}
This is supported on crate feature api and (crate features client-api or client-api-c or client-api-s) only.
Expand description

Additional authentication information for the user-interactive authentication API.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Password(Password<'a>)

Password-based authentication (m.login.password).

ReCaptcha(ReCaptcha<'a>)

Google ReCaptcha 2.0 authentication (m.login.recaptcha).

Token(Token<'a>)

Token-based authentication (m.login.token).

OAuth2(OAuth2<'a>)

OAuth2-based authentication (m.login.oauth2).

EmailIdentity(EmailIdentity<'a>)

Email-based authentication (m.login.email.identity).

Msisdn(Msisdn<'a>)

Phone number-based authentication (m.login.msisdn).

Dummy(Dummy<'a>)

Dummy authentication (m.login.dummy).

FallbackAcknowledgement(FallbackAcknowledgement<'a>)

Fallback acknowledgement.

Implementations

Creates a new AuthData::FallbackAcknowledgement with the given session key.

Returns the value of the type field, if it exists.

Returns the value of the session field, if it exists.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The ‘Incoming’ variant of Self.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more