Struct mailchimp_api::types::EmailSent
source · pub struct EmailSent {
pub activity_type: Option<EmailSentActivityType>,
pub campaign_id: String,
pub campaign_title: String,
pub created_at_timestamp: Option<DateTime<Utc>>,
}
Expand description
Activity feed item representing having an email sent to the contact.
Fields
activity_type: Option<EmailSentActivityType>
Activity feed item representing having an email sent to the contact.
campaign_id: String
Activity feed item representing having an email sent to the contact.
campaign_title: String
Activity feed item representing having an email sent to the contact.
created_at_timestamp: Option<DateTime<Utc>>
Activity feed item representing having an email sent to the contact.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for EmailSent
impl<'de> Deserialize<'de> for EmailSent
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 EmailSent
impl JsonSchema for EmailSent
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 moreimpl StructuralPartialEq for EmailSent
Auto Trait Implementations
impl RefUnwindSafe for EmailSent
impl Send for EmailSent
impl Sync for EmailSent
impl Unpin for EmailSent
impl UnwindSafe for EmailSent
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