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>,
}
Expand description

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

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.