Struct mailchimp_api::types::OpenDetailReport
source · pub struct OpenDetailReport {
pub links: Vec<Links>,
pub campaign_id: String,
pub members: Vec<OpenActivity>,
pub total_items: i64,
pub total_opens: i64,
}
Expand description
A detailed report of any campaign emails that were opened by a list member.
Fields
links: Vec<Links>
A detailed report of any campaign emails that were opened by a list member.
campaign_id: String
A detailed report of any campaign emails that were opened by a list member.
members: Vec<OpenActivity>
A detailed report of any campaign emails that were opened by a list member.
total_items: i64
A detailed report of any campaign emails that were opened by a list member.
total_opens: i64
A detailed report of any campaign emails that were opened by a list member.
Trait Implementations
sourceimpl Clone for OpenDetailReport
impl Clone for OpenDetailReport
sourcefn clone(&self) -> OpenDetailReport
fn clone(&self) -> OpenDetailReport
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 OpenDetailReport
impl Debug for OpenDetailReport
sourceimpl<'de> Deserialize<'de> for OpenDetailReport
impl<'de> Deserialize<'de> for OpenDetailReport
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 OpenDetailReport
impl JsonSchema for OpenDetailReport
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<OpenDetailReport> for OpenDetailReport
impl PartialEq<OpenDetailReport> for OpenDetailReport
sourcefn eq(&self, other: &OpenDetailReport) -> bool
fn eq(&self, other: &OpenDetailReport) -> bool
sourceimpl Serialize for OpenDetailReport
impl Serialize for OpenDetailReport
impl StructuralPartialEq for OpenDetailReport
Auto Trait Implementations
impl RefUnwindSafe for OpenDetailReport
impl Send for OpenDetailReport
impl Sync for OpenDetailReport
impl Unpin for OpenDetailReport
impl UnwindSafe for OpenDetailReport
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