Struct mailchimp_api::types::SubscriberListContact
source · pub struct SubscriberListContact {
pub address_1: String,
pub address_2: String,
pub city: String,
pub company: String,
pub country: String,
pub phone: String,
pub state: String,
pub zip: String,
}
Expand description
Contact information displayed in campaign footers to comply with international spam laws.
Fields
address_1: String
The name of the folder.
address_2: String
Contact information displayed in campaign footers to comply with international spam laws.
city: String
The name of the folder.
company: String
The name of the folder.
country: String
The name of the folder.
phone: String
Contact information displayed in campaign footers to comply with international spam laws.
state: String
Contact information displayed in campaign footers to comply with international spam laws.
zip: String
Contact information displayed in campaign footers to comply with international spam laws.
Trait Implementations
sourceimpl Clone for SubscriberListContact
impl Clone for SubscriberListContact
sourcefn clone(&self) -> SubscriberListContact
fn clone(&self) -> SubscriberListContact
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 SubscriberListContact
impl Debug for SubscriberListContact
sourceimpl<'de> Deserialize<'de> for SubscriberListContact
impl<'de> Deserialize<'de> for SubscriberListContact
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 SubscriberListContact
impl JsonSchema for SubscriberListContact
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<SubscriberListContact> for SubscriberListContact
impl PartialEq<SubscriberListContact> for SubscriberListContact
sourcefn eq(&self, other: &SubscriberListContact) -> bool
fn eq(&self, other: &SubscriberListContact) -> bool
sourceimpl Serialize for SubscriberListContact
impl Serialize for SubscriberListContact
impl StructuralPartialEq for SubscriberListContact
Auto Trait Implementations
impl RefUnwindSafe for SubscriberListContact
impl Send for SubscriberListContact
impl Sync for SubscriberListContact
impl Unpin for SubscriberListContact
impl UnwindSafe for SubscriberListContact
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