Struct mailchimp_api::types::ECommerceStoresAddress
source · pub struct ECommerceStoresAddress {
pub address_1: String,
pub address_2: String,
pub city: String,
pub country: String,
pub country_code: String,
pub latitude: f64,
pub longitude: f64,
pub postal_code: String,
pub province: String,
pub province_code: String,
}
Expand description
The store address.
Fields
address_1: String
The store address.
address_2: String
The store address.
city: String
The store address.
country: String
The store address.
country_code: String
The store address.
latitude: f64
The store address.
longitude: f64
The store address.
postal_code: String
The store address.
province: String
The store address.
province_code: String
The store address.
Trait Implementations
sourceimpl Clone for ECommerceStoresAddress
impl Clone for ECommerceStoresAddress
sourcefn clone(&self) -> ECommerceStoresAddress
fn clone(&self) -> ECommerceStoresAddress
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ECommerceStoresAddress
impl Debug for ECommerceStoresAddress
sourceimpl<'de> Deserialize<'de> for ECommerceStoresAddress
impl<'de> Deserialize<'de> for ECommerceStoresAddress
sourcefn 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
sourceimpl JsonSchema for ECommerceStoresAddress
impl JsonSchema for ECommerceStoresAddress
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<ECommerceStoresAddress> for ECommerceStoresAddress
impl PartialEq<ECommerceStoresAddress> for ECommerceStoresAddress
sourcefn eq(&self, other: &ECommerceStoresAddress) -> bool
fn eq(&self, other: &ECommerceStoresAddress) -> bool
sourceimpl Serialize for ECommerceStoresAddress
impl Serialize for ECommerceStoresAddress
impl StructuralPartialEq for ECommerceStoresAddress
Auto Trait Implementations
impl RefUnwindSafe for ECommerceStoresAddress
impl Send for ECommerceStoresAddress
impl Sync for ECommerceStoresAddress
impl Unpin for ECommerceStoresAddress
impl UnwindSafe for ECommerceStoresAddress
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more