Struct mailchimp_api::types::ClickDetailReport
source · pub struct ClickDetailReport {
pub links: Vec<Links>,
pub campaign_id: String,
pub total_items: i64,
pub urls_clicked: Vec<UrlsClicked>,
}
Expand description
A list of URLs and unique IDs included in HTML and plain-text versions of a campaign.
Fields
links: Vec<Links>
A list of URLs and unique IDs included in HTML and plain-text versions of a campaign.
campaign_id: String
A list of URLs and unique IDs included in HTML and plain-text versions of a campaign.
total_items: i64
A list of URLs and unique IDs included in HTML and plain-text versions of a campaign.
urls_clicked: Vec<UrlsClicked>
A list of URLs and unique IDs included in HTML and plain-text versions of a campaign.
Trait Implementations
sourceimpl Clone for ClickDetailReport
impl Clone for ClickDetailReport
sourcefn clone(&self) -> ClickDetailReport
fn clone(&self) -> ClickDetailReport
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 ClickDetailReport
impl Debug for ClickDetailReport
sourceimpl<'de> Deserialize<'de> for ClickDetailReport
impl<'de> Deserialize<'de> for ClickDetailReport
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 ClickDetailReport
impl JsonSchema for ClickDetailReport
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<ClickDetailReport> for ClickDetailReport
impl PartialEq<ClickDetailReport> for ClickDetailReport
sourcefn eq(&self, other: &ClickDetailReport) -> bool
fn eq(&self, other: &ClickDetailReport) -> bool
sourceimpl Serialize for ClickDetailReport
impl Serialize for ClickDetailReport
impl StructuralPartialEq for ClickDetailReport
Auto Trait Implementations
impl RefUnwindSafe for ClickDetailReport
impl Send for ClickDetailReport
impl Sync for ClickDetailReport
impl Unpin for ClickDetailReport
impl UnwindSafe for ClickDetailReport
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