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