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