Struct google_appengine1_beta4::UrlDispatchRule [] [src]

pub struct UrlDispatchRule {
    pub path: Option<String>,
    pub domain: Option<String>,
    pub module: Option<String>,
}

Rules to match an HTTP request and dispatch that request to a module.

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 module in this application that should serve the matched request. The module must already exist. Example: default.

Trait Implementations

impl Default for UrlDispatchRule
[src]

[src]

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

impl Clone for UrlDispatchRule
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UrlDispatchRule
[src]

[src]

Formats the value using the given formatter.

impl Part for UrlDispatchRule
[src]