Struct mailchimp_api::types::ECommerceCustomerData
source · pub struct ECommerceCustomerData {
pub address: Option<Address>,
pub company: String,
pub email_address: String,
pub first_name: String,
pub id: String,
pub last_name: String,
pub opt_in_status: bool,
}
Expand description
Information about a specific customer.
Fields
address: Option<Address>
Information about a specific customer.
company: String
Information about a specific customer.
email_address: String
The name of the folder.
first_name: String
Information about a specific customer.
id: String
The name of the folder.
last_name: String
Information about a specific customer.
opt_in_status: bool
Whether the webhook is triggered when a list subscriber is added.
Trait Implementations
sourceimpl Clone for ECommerceCustomerData
impl Clone for ECommerceCustomerData
sourcefn clone(&self) -> ECommerceCustomerData
fn clone(&self) -> ECommerceCustomerData
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 ECommerceCustomerData
impl Debug for ECommerceCustomerData
sourceimpl<'de> Deserialize<'de> for ECommerceCustomerData
impl<'de> Deserialize<'de> for ECommerceCustomerData
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 ECommerceCustomerData
impl JsonSchema for ECommerceCustomerData
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<ECommerceCustomerData> for ECommerceCustomerData
impl PartialEq<ECommerceCustomerData> for ECommerceCustomerData
sourcefn eq(&self, other: &ECommerceCustomerData) -> bool
fn eq(&self, other: &ECommerceCustomerData) -> bool
sourceimpl Serialize for ECommerceCustomerData
impl Serialize for ECommerceCustomerData
impl StructuralPartialEq for ECommerceCustomerData
Auto Trait Implementations
impl RefUnwindSafe for ECommerceCustomerData
impl Send for ECommerceCustomerData
impl Sync for ECommerceCustomerData
impl Unpin for ECommerceCustomerData
impl UnwindSafe for ECommerceCustomerData
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