pub struct GetCampaignsResponseCampaignReportSummary {
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, clicks, and e-commerce data.
Fields
click_rate: f64For sent campaigns, a summary of opens, clicks, and e-commerce data.
clicks: i64For sent campaigns, a summary of opens, clicks, and e-commerce data.
ecommerce: Option<Ecommerce>For sent campaigns, a summary of opens, clicks, and e-commerce data.
open_rate: f64For sent campaigns, a summary of opens, clicks, and e-commerce data.
opens: i64For sent campaigns, a summary of opens, clicks, and e-commerce data.
subscriber_clicks: i64For sent campaigns, a summary of opens, clicks, and e-commerce data.
unique_opens: i64For sent campaigns, a summary of opens, clicks, and e-commerce data.
Trait Implementations
sourceimpl Clone for GetCampaignsResponseCampaignReportSummary
impl Clone for GetCampaignsResponseCampaignReportSummary
sourcefn clone(&self) -> GetCampaignsResponseCampaignReportSummary
fn clone(&self) -> GetCampaignsResponseCampaignReportSummary
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<'de> Deserialize<'de> for GetCampaignsResponseCampaignReportSummary
impl<'de> Deserialize<'de> for GetCampaignsResponseCampaignReportSummary
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 GetCampaignsResponseCampaignReportSummary
impl JsonSchema for GetCampaignsResponseCampaignReportSummary
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<GetCampaignsResponseCampaignReportSummary> for GetCampaignsResponseCampaignReportSummary
impl PartialEq<GetCampaignsResponseCampaignReportSummary> for GetCampaignsResponseCampaignReportSummary
sourcefn eq(&self, other: &GetCampaignsResponseCampaignReportSummary) -> bool
fn eq(&self, other: &GetCampaignsResponseCampaignReportSummary) -> bool
impl StructuralPartialEq for GetCampaignsResponseCampaignReportSummary
Auto Trait Implementations
impl RefUnwindSafe for GetCampaignsResponseCampaignReportSummary
impl Send for GetCampaignsResponseCampaignReportSummary
impl Sync for GetCampaignsResponseCampaignReportSummary
impl Unpin for GetCampaignsResponseCampaignReportSummary
impl UnwindSafe for GetCampaignsResponseCampaignReportSummary
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