[][src]Struct mailchimp::types::ListBatchResponse

pub struct ListBatchResponse {
    pub new_members: Vec<ListMember>,
    pub updated_members: Vec<ListMember>,
    pub errors: Vec<ListBatchErrors>,
    pub total_created: u64,
    pub total_updated: u64,
    pub error_count: u64,
    pub _links: Vec<LinkType>,
}

Batch subscribe or unsubscribe list members Response

Fields

new_members: Vec<ListMember>

An array of objects, each representing a new member that was added to the list.

updated_members: Vec<ListMember>

An array of objects, each representing an existing list member whose subscription status was updated.

errors: Vec<ListBatchErrors>

An array of objects, each representing an email address that could not be added to the list or updated and an error message providing more details.

total_created: u64

The total number of items matching the query, irrespective of pagination.

total_updated: u64

The total number of items matching the query, irrespective of pagination.

error_count: u64

The total number of items matching the query, irrespective of pagination.

_links: Vec<LinkType>

A list of link types and descriptions for the API schema documents.

Trait Implementations

impl Clone for ListBatchResponse[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ListBatchResponse[src]

impl Serialize for ListBatchResponse[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

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