Struct google_appengine1_beta4::api::ApiConfigHandler
source · 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§
source§impl Clone for ApiConfigHandler
impl Clone for ApiConfigHandler
source§fn clone(&self) -> ApiConfigHandler
fn clone(&self) -> ApiConfigHandler
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ApiConfigHandler
impl Debug for ApiConfigHandler
source§impl Default for ApiConfigHandler
impl Default for ApiConfigHandler
source§fn default() -> ApiConfigHandler
fn default() -> ApiConfigHandler
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ApiConfigHandler
impl<'de> Deserialize<'de> for ApiConfigHandler
source§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