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

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 name to match against. The wildcard "*" is supported if specified before a period: "*.".Defaults to matching all domains: "*".

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]

Returns the "default value" for a type. Read more

impl Clone for UrlDispatchRule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UrlDispatchRule
[src]

Formats the value using the given formatter.

impl Part for UrlDispatchRule
[src]