Struct gsuite_api::BuildingAddress [−][src]
pub struct BuildingAddress {
pub language_code: String,
pub administrative_area: String,
pub region_code: String,
pub locality: String,
pub postal_code: String,
pub sublocality: String,
pub address_lines: Vec<String>,
}Expand description
A building’s address.
Fields
language_code: StringOptional. BCP-47 language code of the contents of this address (if known).
administrative_area: StringOptional. Highest administrative subdivision which is used for postal addresses of a country or region.
region_code: StringRequired. CLDR region code of the country/region of the address.
locality: StringOptional. Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world where localities are not well defined or do not fit into this structure well, leave locality empty and use addressLines.
postal_code: StringOptional. Postal code of the address.
sublocality: StringOptional. Sublocality of the address.
address_lines: Vec<String>Unstructured address lines describing the lower levels of an address.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for BuildingAddressimpl Send for BuildingAddressimpl Sync for BuildingAddressimpl Unpin for BuildingAddressimpl UnwindSafe for BuildingAddressBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
pub fn vzip(self) -> V