[][src]Struct mailchimp::types::ContactType

pub struct ContactType {
    pub company: String,
    pub addr1: String,
    pub addr2: String,
    pub address1: String,
    pub address2: String,
    pub city: String,
    pub state: String,
    pub zip: String,
    pub country: String,
    pub phone: String,
}

Contact Type

Fields

company: String

The company name for the account.

addr1: String

Desc: The street address for the account contact.

addr2: String

Desc: The street address for the account contact.

address1: String

Desc: The street address for the account contact.

address2: String

Desc: The street address for the account contact.

city: String

Desc: The city for the account contact.

state: String

Desc: The state for the account contact.

zip: String

Desc: The zip code for the account contact.

country: String

Desc: The country for the account contact.

phone: String

The phone number for the list contact.

Trait Implementations

impl Clone for ContactType[src]

impl Debug for ContactType[src]

impl Default for ContactType[src]

impl<'de> Deserialize<'de> for ContactType[src]

impl Serialize for ContactType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.