Struct google_content2::PostalCodeRange [] [src]

pub struct PostalCodeRange {
    pub postal_code_range_begin: Option<String>,
    pub postal_code_range_end: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

A postal code or a pattern of the form prefix* denoting the inclusive lower bound of the range defining the area. Examples values: "94108", "9410*", "9*". Required.

A postal code or a pattern of the form prefix* denoting the inclusive upper bound of the range defining the area. It must have the same length as postalCodeRangeBegin: if postalCodeRangeBegin is a postal code then postalCodeRangeEnd must be a postal code too; if postalCodeRangeBegin is a pattern then postalCodeRangeEnd must be a pattern with the same prefix length. Optional: if not set, then the area is defined as being all the postal codes matching postalCodeRangeBegin.

Trait Implementations

impl Debug for PostalCodeRange
[src]

Formats the value using the given formatter.

impl Clone for PostalCodeRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PostalCodeRange
[src]

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

impl Part for PostalCodeRange
[src]