[][src]Struct mailchimp::types::CampaignDeliveryStatusType

pub struct CampaignDeliveryStatusType {
    pub enabled: Option<bool>,
    pub can_cancel: Option<bool>,
    pub status: Option<String>,
    pub emails_sent: Option<u64>,
    pub emails_canceled: Option<u64>,
}

The days of the week to send a daily RSS Campaign.

Fields

enabled: Option<bool>

Whether Campaign Delivery Status is enabled for this account and campaign.

can_cancel: Option<bool>

Whether a campaign send can be canceled.

status: Option<String>

The current state of a campaign delivery.

emails_sent: Option<u64>

The total number of emails confirmed sent for this campaign so far.

emails_canceled: Option<u64>

The total number of emails canceled for this campaign.

Trait Implementations

impl Clone for CampaignDeliveryStatusType[src]

impl Debug for CampaignDeliveryStatusType[src]

impl Default for CampaignDeliveryStatusType[src]

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

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