Struct mailchimp_api::types::DeliveryStatus
source · pub struct DeliveryStatus {
pub can_cancel: bool,
pub emails_canceled: i64,
pub emails_sent: i64,
pub enabled: bool,
pub status: Option<CampaignDeliveryStatus>,
}
Expand description
Updates on campaigns in the process of sending.
Fields
can_cancel: bool
Updates on campaigns in the process of sending.
emails_canceled: i64
Updates on campaigns in the process of sending.
emails_sent: i64
Updates on campaigns in the process of sending.
enabled: bool
Updates on campaigns in the process of sending.
status: Option<CampaignDeliveryStatus>
Updates on campaigns in the process of sending.
Trait Implementations
sourceimpl Clone for DeliveryStatus
impl Clone for DeliveryStatus
sourcefn clone(&self) -> DeliveryStatus
fn clone(&self) -> DeliveryStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DeliveryStatus
impl Debug for DeliveryStatus
sourceimpl<'de> Deserialize<'de> for DeliveryStatus
impl<'de> Deserialize<'de> for DeliveryStatus
sourcefn 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
sourceimpl JsonSchema for DeliveryStatus
impl JsonSchema for DeliveryStatus
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<DeliveryStatus> for DeliveryStatus
impl PartialEq<DeliveryStatus> for DeliveryStatus
sourcefn eq(&self, other: &DeliveryStatus) -> bool
fn eq(&self, other: &DeliveryStatus) -> bool
sourceimpl Serialize for DeliveryStatus
impl Serialize for DeliveryStatus
impl StructuralPartialEq for DeliveryStatus
Auto Trait Implementations
impl RefUnwindSafe for DeliveryStatus
impl Send for DeliveryStatus
impl Sync for DeliveryStatus
impl Unpin for DeliveryStatus
impl UnwindSafe for DeliveryStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more