Struct mailchimp_api::types::ShippingAddress
source · pub struct ShippingAddress {}Expand description
The shipping address for the order.
Fields
address_1: StringThe shipping address for the order.
address_2: StringThe shipping address for the order.
city: StringThe shipping address for the order.
company: StringThe shipping address for the order.
country: StringThe shipping address for the order.
country_code: StringThe shipping address for the order.
latitude: f64The shipping address for the order.
longitude: f64The shipping address for the order.
name: StringThe shipping address for the order.
phone: StringThe shipping address for the order.
postal_code: StringThe shipping address for the order.
province: StringThe shipping address for the order.
province_code: StringThe shipping address for the order.
Trait Implementations
sourceimpl Clone for ShippingAddress
impl Clone for ShippingAddress
sourcefn clone(&self) -> ShippingAddress
fn clone(&self) -> ShippingAddress
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 ShippingAddress
impl Debug for ShippingAddress
sourceimpl<'de> Deserialize<'de> for ShippingAddress
impl<'de> Deserialize<'de> for ShippingAddress
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 ShippingAddress
impl JsonSchema for ShippingAddress
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<ShippingAddress> for ShippingAddress
impl PartialEq<ShippingAddress> for ShippingAddress
sourcefn eq(&self, other: &ShippingAddress) -> bool
fn eq(&self, other: &ShippingAddress) -> bool
sourceimpl Serialize for ShippingAddress
impl Serialize for ShippingAddress
impl StructuralPartialEq for ShippingAddress
Auto Trait Implementations
impl RefUnwindSafe for ShippingAddress
impl Send for ShippingAddress
impl Sync for ShippingAddress
impl Unpin for ShippingAddress
impl UnwindSafe for ShippingAddress
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