[][src]Struct google_identitytoolkit3::CreateAuthUriResponse

pub struct CreateAuthUriResponse {
    pub kind: Option<String>,
    pub captcha_required: Option<bool>,
    pub registered: Option<bool>,
    pub all_providers: Option<Vec<String>>,
    pub for_existing_provider: Option<bool>,
    pub signin_methods: Option<Vec<String>>,
    pub session_id: Option<String>,
    pub provider_id: Option<String>,
    pub auth_uri: Option<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

kind: Option<String>

The fixed string identitytoolkit#CreateAuthUriResponse".

captcha_required: Option<bool>

True if captcha is required.

registered: Option<bool>

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

all_providers: Option<Vec<String>>

all providers the user has once used to do federated login

for_existing_provider: Option<bool>

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

signin_methods: Option<Vec<String>>

All sign-in methods this user has used.

session_id: Option<String>

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

provider_id: Option<String>

The provider ID of the auth URI.

auth_uri: Option<String>

The URI used by the IDP to authenticate the user.

Trait Implementations

impl ResponseResult for CreateAuthUriResponse[src]

impl Default for CreateAuthUriResponse[src]

impl Clone for CreateAuthUriResponse[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for CreateAuthUriResponse[src]

impl Serialize for CreateAuthUriResponse[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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