[][src]Struct google_identitytoolkit3::IdpConfig

pub struct IdpConfig {
    pub experiment_percent: Option<i32>,
    pub secret: Option<String>,
    pub provider: Option<String>,
    pub whitelisted_audiences: Option<Vec<String>>,
    pub enabled: Option<bool>,
    pub client_id: Option<String>,
}

Template for a single idp configuration.

This type is not used in any activity, and only used as part of another schema.

Fields

experiment_percent: Option<i32>

Percent of users who will be prompted/redirected federated login for this IDP.

secret: Option<String>

OAuth2 client secret.

provider: Option<String>

OAuth2 provider.

whitelisted_audiences: Option<Vec<String>>

Whitelisted client IDs for audience check.

enabled: Option<bool>

Whether this IDP is enabled.

client_id: Option<String>

OAuth2 client ID.

Trait Implementations

impl Clone for IdpConfig[src]

impl Debug for IdpConfig[src]

impl Default for IdpConfig[src]

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

impl Part for IdpConfig[src]

impl Serialize for IdpConfig[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, 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.

impl<T> Typeable for T where
    T: Any