pub struct PostalCodeRange {
pub postal_code_range_begin: Option<String>,
pub postal_code_range_end: Option<String>,
}Expand description
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§
Source§impl Clone for PostalCodeRange
impl Clone for PostalCodeRange
Source§fn clone(&self) -> PostalCodeRange
fn clone(&self) -> PostalCodeRange
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more