Struct google_iap1::api::AccessDeniedPageSettings[][src]

pub struct AccessDeniedPageSettings {
    pub access_denied_page_uri: Option<String>,
}

Custom content configuration for access denied page. IAP allows customers to define a custom URI to use as the error page when access is denied to users. If IAP prevents access to this page, the default IAP error page will be displayed instead.

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

Fields

access_denied_page_uri: Option<String>

The URI to be redirected to when access is denied.

Trait Implementations

impl Clone for AccessDeniedPageSettings[src]

impl Debug for AccessDeniedPageSettings[src]

impl Default for AccessDeniedPageSettings[src]

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

impl Part for AccessDeniedPageSettings[src]

impl Serialize for AccessDeniedPageSettings[src]

Auto Trait Implementations

impl RefUnwindSafe for AccessDeniedPageSettings[src]

impl Send for AccessDeniedPageSettings[src]

impl Sync for AccessDeniedPageSettings[src]

impl Unpin for AccessDeniedPageSettings[src]

impl UnwindSafe for AccessDeniedPageSettings[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.