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
postal_code_range_begin: Option<String>
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.
postal_code_range_end: Option<String>
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]
impl Clone for PostalCodeRange[src]
fn clone(&self) -> PostalCodeRange
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for PostalCodeRange[src]
fn default() -> PostalCodeRange
Returns the "default value" for a type. Read more