[][src]Struct google_appengine1_beta5::ApiConfigHandler

pub struct ApiConfigHandler {
    pub url: Option<String>,
    pub security_level: Option<String>,
    pub auth_fail_action: Option<String>,
    pub login: Option<String>,
    pub script: Option<String>,
}

Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/) configuration for API handlers.

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

Fields

url: Option<String>

URL to serve the endpoint at.

security_level: Option<String>

Security (HTTPS) enforcement for this URL.

auth_fail_action: Option<String>

Action to take when users access resources that require authentication. Defaults to redirect.

login: Option<String>

Level of login required to access this resource. Defaults to optional.

script: Option<String>

Path to the script from the application root directory.

Trait Implementations

impl Clone for ApiConfigHandler[src]

impl Debug for ApiConfigHandler[src]

impl Default for ApiConfigHandler[src]

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

impl Part for ApiConfigHandler[src]

impl Serialize for ApiConfigHandler[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