Struct mailchimp_api::types::EmailBounced
source · pub struct EmailBounced {
pub activity_type: Option<EmailBouncedActivityType>,
pub bounce_has_open_activity: bool,
pub bounce_type: Option<BounceType>,
pub campaign_id: String,
pub campaign_title: String,
pub created_at_timestamp: Option<DateTime<Utc>>,
}
Expand description
Activity feed item representing an email to this contact bouncing.
Fields
activity_type: Option<EmailBouncedActivityType>
Activity feed item representing an email to this contact bouncing.
bounce_has_open_activity: bool
Activity feed item representing an email to this contact bouncing.
bounce_type: Option<BounceType>
Activity feed item representing an email to this contact bouncing.
campaign_id: String
Activity feed item representing an email to this contact bouncing.
campaign_title: String
Activity feed item representing an email to this contact bouncing.
created_at_timestamp: Option<DateTime<Utc>>
Activity feed item representing an email to this contact bouncing.
Trait Implementations
sourceimpl Clone for EmailBounced
impl Clone for EmailBounced
sourcefn clone(&self) -> EmailBounced
fn clone(&self) -> EmailBounced
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 EmailBounced
impl Debug for EmailBounced
sourceimpl<'de> Deserialize<'de> for EmailBounced
impl<'de> Deserialize<'de> for EmailBounced
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 EmailBounced
impl JsonSchema for EmailBounced
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<EmailBounced> for EmailBounced
impl PartialEq<EmailBounced> for EmailBounced
sourcefn eq(&self, other: &EmailBounced) -> bool
fn eq(&self, other: &EmailBounced) -> bool
sourceimpl Serialize for EmailBounced
impl Serialize for EmailBounced
impl StructuralPartialEq for EmailBounced
Auto Trait Implementations
impl RefUnwindSafe for EmailBounced
impl Send for EmailBounced
impl Sync for EmailBounced
impl Unpin for EmailBounced
impl UnwindSafe for EmailBounced
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