Struct mailchimp_api::types::SentTo
source · pub struct SentTo {Show 13 fields
pub links: Vec<Links>,
pub absplit_group: String,
pub campaign_id: String,
pub email_address: String,
pub email_id: String,
pub gmt_offset: i64,
pub last_open: Option<DateTime<Utc>>,
pub list_id: String,
pub list_is_active: bool,
pub merge_fields: Option<Value>,
pub open_count: i64,
pub status: String,
pub vip: bool,
}Expand description
A subscriber’s status for a specific campaign.
Fields
links: Vec<Links>A subscriber’s status for a specific campaign.
absplit_group: StringA subscriber’s status for a specific campaign.
campaign_id: StringA subscriber’s status for a specific campaign.
email_address: StringA subscriber’s status for a specific campaign.
email_id: StringA subscriber’s status for a specific campaign.
gmt_offset: i64A subscriber’s status for a specific campaign.
last_open: Option<DateTime<Utc>>A subscriber’s status for a specific campaign.
list_id: StringA subscriber’s status for a specific campaign.
list_is_active: boolA subscriber’s status for a specific campaign.
merge_fields: Option<Value>A subscriber’s status for a specific campaign.
open_count: i64A subscriber’s status for a specific campaign.
status: StringA subscriber’s status for a specific campaign.
vip: boolA subscriber’s status for a specific campaign.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for SentTo
impl<'de> Deserialize<'de> for SentTo
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 SentTo
impl JsonSchema for SentTo
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 SentTo
Auto Trait Implementations
impl RefUnwindSafe for SentTo
impl Send for SentTo
impl Sync for SentTo
impl Unpin for SentTo
impl UnwindSafe for SentTo
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