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