Struct google_identitytoolkit3::api::CreateAuthUriResponse[][src]

pub struct CreateAuthUriResponse {
    pub all_providers: Option<Vec<String>>,
    pub auth_uri: Option<String>,
    pub captcha_required: Option<bool>,
    pub for_existing_provider: Option<bool>,
    pub kind: Option<String>,
    pub provider_id: Option<String>,
    pub registered: Option<bool>,
    pub session_id: Option<String>,
    pub signin_methods: Option<Vec<String>>,
}

Response of creating the IDP authentication URL.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

all_providers: Option<Vec<String>>

all providers the user has once used to do federated login

auth_uri: Option<String>

The URI used by the IDP to authenticate the user.

captcha_required: Option<bool>

True if captcha is required.

for_existing_provider: Option<bool>

True if the authUri is for user’s existing provider.

kind: Option<String>

The fixed string identitytoolkit#CreateAuthUriResponse“.

provider_id: Option<String>

The provider ID of the auth URI.

registered: Option<bool>

Whether the user is registered if the identifier is an email.

session_id: Option<String>

Session ID which should be passed in the following verifyAssertion request.

signin_methods: Option<Vec<String>>

All sign-in methods this user has used.

Trait Implementations

impl Clone for CreateAuthUriResponse[src]

impl Debug for CreateAuthUriResponse[src]

impl Default for CreateAuthUriResponse[src]

impl<'de> Deserialize<'de> for CreateAuthUriResponse[src]

impl ResponseResult for CreateAuthUriResponse[src]

impl Serialize for CreateAuthUriResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.