Struct google_iap1::api::OAuthSettings[][src]

pub struct OAuthSettings {
    pub login_hint: Option<String>,
}

Configuration for OAuth login&consent flow behavior as well as for OAuth Credentials.

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

Fields

login_hint: Option<String>

Domain hint to send as hd=? parameter in OAuth request flow. Enables redirect to primary IDP by skipping Google's login screen. https://developers.google.com/identity/protocols/OpenIDConnect#hd-param Note: IAP does not verify that the id token's hd claim matches this value since access behavior is managed by IAM policies.

Trait Implementations

impl Clone for OAuthSettings[src]

impl Debug for OAuthSettings[src]

impl Default for OAuthSettings[src]

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

impl Part for OAuthSettings[src]

impl Serialize for OAuthSettings[src]

Auto Trait Implementations

impl RefUnwindSafe for OAuthSettings[src]

impl Send for OAuthSettings[src]

impl Sync for OAuthSettings[src]

impl Unpin for OAuthSettings[src]

impl UnwindSafe for OAuthSettings[src]

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.