Struct google_appengine1::api::ApiConfigHandler [−][src]
pub struct ApiConfigHandler {
pub auth_fail_action: Option<String>,
pub login: Option<String>,
pub script: Option<String>,
pub security_level: Option<String>,
pub url: Option<String>,
}Expand description
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
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.
security_level: Option<String>Security (HTTPS) enforcement for this URL.
url: Option<String>URL to serve the endpoint at.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ApiConfigHandler
impl Send for ApiConfigHandler
impl Sync for ApiConfigHandler
impl Unpin for ApiConfigHandler
impl UnwindSafe for ApiConfigHandler
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more