Struct google_appengine1::UrlDispatchRule [−][src]
pub struct UrlDispatchRule {
pub path: Option<String>,
pub domain: Option<String>,
pub service: Option<String>,
}Rules to match an HTTP request and dispatch that request to a service.
This type is not used in any activity, and only used as part of another schema.
Fields
path: Option<String>
Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
domain: Option<String>
Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
service: Option<String>
Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
Trait Implementations
impl Default for UrlDispatchRule[src]
impl Default for UrlDispatchRulefn default() -> UrlDispatchRule[src]
fn default() -> UrlDispatchRuleReturns the "default value" for a type. Read more
impl Clone for UrlDispatchRule[src]
impl Clone for UrlDispatchRulefn clone(&self) -> UrlDispatchRule[src]
fn clone(&self) -> UrlDispatchRuleReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for UrlDispatchRule[src]
impl Debug for UrlDispatchRulefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Part for UrlDispatchRule[src]
impl Part for UrlDispatchRuleAuto Trait Implementations
impl Send for UrlDispatchRule
impl Send for UrlDispatchRuleimpl Sync for UrlDispatchRule
impl Sync for UrlDispatchRule