[][src]Struct mailchimp::types::CollectionListGrowthHistory

pub struct CollectionListGrowthHistory {
    pub list_id: String,
    pub history: Vec<ListGrowthHistoryType>,
    pub total_items: u64,
    pub _links: Vec<LinkType>,
}

Get a month-by-month summary of a specific list’s growth activity.

Fields

list_id: String

The list id for the abuse report.

history: Vec<ListGrowthHistoryType>

An array of objects, each representing an abuse report resource.

total_items: u64

The total number of items matching the query regardless of pagination.

_links: Vec<LinkType>

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

Trait Implementations

impl Clone for CollectionListGrowthHistory[src]

impl Debug for CollectionListGrowthHistory[src]

impl Default for CollectionListGrowthHistory[src]

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

impl MailchimpCollection<ListGrowthHistoryType> for CollectionListGrowthHistory[src]

fn get_total_items(&self) -> u64[src]

Total Items

fn get_values(&self) -> Vec<ListGrowthHistoryType>[src]

Data

impl Serialize for CollectionListGrowthHistory[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.