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§
Source§impl Clone for CampaignDeliveryStatusType
impl Clone for CampaignDeliveryStatusType
Source§fn clone(&self) -> CampaignDeliveryStatusType
fn clone(&self) -> CampaignDeliveryStatusType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CampaignDeliveryStatusType
impl Debug for CampaignDeliveryStatusType
Source§impl Default for CampaignDeliveryStatusType
impl Default for CampaignDeliveryStatusType
Source§impl<'de> Deserialize<'de> for CampaignDeliveryStatusType
impl<'de> Deserialize<'de> for CampaignDeliveryStatusType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CampaignDeliveryStatusType
impl RefUnwindSafe for CampaignDeliveryStatusType
impl Send for CampaignDeliveryStatusType
impl Sync for CampaignDeliveryStatusType
impl Unpin for CampaignDeliveryStatusType
impl UnwindSafe for CampaignDeliveryStatusType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more