Struct mailchimp_api::types::ClickSummary
source · pub struct ClickSummary {
pub clicks: i64,
pub first_click: Option<DateTime<Utc>>,
pub last_click: Option<DateTime<Utc>>,
pub locations: Vec<EepurlActivityClickSummaryLocation>,
}
Expand description
A summary of the click-throughs on the campaign’s URL.
Fields
clicks: i64
A summary of the click-throughs on the campaign’s URL.
first_click: Option<DateTime<Utc>>
A summary of the click-throughs on the campaign’s URL.
last_click: Option<DateTime<Utc>>
A summary of the click-throughs on the campaign’s URL.
locations: Vec<EepurlActivityClickSummaryLocation>
A summary of the click-throughs on the campaign’s URL.
Trait Implementations
sourceimpl Clone for ClickSummary
impl Clone for ClickSummary
sourcefn clone(&self) -> ClickSummary
fn clone(&self) -> ClickSummary
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 ClickSummary
impl Debug for ClickSummary
sourceimpl<'de> Deserialize<'de> for ClickSummary
impl<'de> Deserialize<'de> for ClickSummary
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 ClickSummary
impl JsonSchema for ClickSummary
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<ClickSummary> for ClickSummary
impl PartialEq<ClickSummary> for ClickSummary
sourcefn eq(&self, other: &ClickSummary) -> bool
fn eq(&self, other: &ClickSummary) -> bool
sourceimpl Serialize for ClickSummary
impl Serialize for ClickSummary
impl StructuralPartialEq for ClickSummary
Auto Trait Implementations
impl RefUnwindSafe for ClickSummary
impl Send for ClickSummary
impl Sync for ClickSummary
impl Unpin for ClickSummary
impl UnwindSafe for ClickSummary
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