Struct google_iap1::api::CorsSettings[][src]

pub struct CorsSettings {
    pub allow_http_options: Option<bool>,
}

Allows customers to configure HTTP request paths that'll allow HTTP OPTIONS call to bypass authentication and authorization.

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

Fields

allow_http_options: Option<bool>

Configuration to allow HTTP OPTIONS calls to skip authorization. If undefined, IAP will not apply any special logic to OPTIONS requests.

Trait Implementations

impl Clone for CorsSettings[src]

impl Debug for CorsSettings[src]

impl Default for CorsSettings[src]

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

impl Part for CorsSettings[src]

impl Serialize for CorsSettings[src]

Auto Trait Implementations

impl RefUnwindSafe for CorsSettings[src]

impl Send for CorsSettings[src]

impl Sync for CorsSettings[src]

impl Unpin for CorsSettings[src]

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