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