Struct mailchimp_api::types::CampaignReportSummaryData
source · pub struct CampaignReportSummaryData {
pub click_rate: f64,
pub clicks: i64,
pub ecommerce: Option<Ecommerce>,
pub open_rate: f64,
pub opens: i64,
pub subscriber_clicks: i64,
pub unique_opens: i64,
}Expand description
For sent campaigns, a summary of opens and clicks.
Fields
click_rate: f64For sent campaigns, a summary of opens and clicks.
clicks: i64For sent campaigns, a summary of opens and clicks.
ecommerce: Option<Ecommerce>For sent campaigns, a summary of opens and clicks.
open_rate: f64For sent campaigns, a summary of opens and clicks.
opens: i64For sent campaigns, a summary of opens and clicks.
subscriber_clicks: i64For sent campaigns, a summary of opens and clicks.
unique_opens: i64For sent campaigns, a summary of opens and clicks.
Trait Implementations
sourceimpl Clone for CampaignReportSummaryData
impl Clone for CampaignReportSummaryData
sourcefn clone(&self) -> CampaignReportSummaryData
fn clone(&self) -> CampaignReportSummaryData
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 CampaignReportSummaryData
impl Debug for CampaignReportSummaryData
sourceimpl<'de> Deserialize<'de> for CampaignReportSummaryData
impl<'de> Deserialize<'de> for CampaignReportSummaryData
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 CampaignReportSummaryData
impl JsonSchema for CampaignReportSummaryData
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<CampaignReportSummaryData> for CampaignReportSummaryData
impl PartialEq<CampaignReportSummaryData> for CampaignReportSummaryData
sourcefn eq(&self, other: &CampaignReportSummaryData) -> bool
fn eq(&self, other: &CampaignReportSummaryData) -> bool
sourceimpl Serialize for CampaignReportSummaryData
impl Serialize for CampaignReportSummaryData
impl StructuralPartialEq for CampaignReportSummaryData
Auto Trait Implementations
impl RefUnwindSafe for CampaignReportSummaryData
impl Send for CampaignReportSummaryData
impl Sync for CampaignReportSummaryData
impl Unpin for CampaignReportSummaryData
impl UnwindSafe for CampaignReportSummaryData
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