Struct mailchimp_api::types::EepurlActivity
source · pub struct EepurlActivity {
pub links: Vec<Links>,
pub campaign_id: String,
pub clicks: Option<ClickSummary>,
pub eepurl: String,
pub referrers: Vec<Referrer>,
pub total_items: i64,
pub twitter: Option<Twitter>,
}
Expand description
A summary of social activity for the campaign, tracked by EepURL.
Fields
links: Vec<Links>
A summary of social activity for the campaign, tracked by EepURL.
campaign_id: String
A summary of social activity for the campaign, tracked by EepURL.
clicks: Option<ClickSummary>
A summary of social activity for the campaign, tracked by EepURL.
eepurl: String
A summary of social activity for the campaign, tracked by EepURL.
referrers: Vec<Referrer>
A summary of social activity for the campaign, tracked by EepURL.
total_items: i64
A summary of social activity for the campaign, tracked by EepURL.
twitter: Option<Twitter>
A summary of social activity for the campaign, tracked by EepURL.
Trait Implementations
sourceimpl Clone for EepurlActivity
impl Clone for EepurlActivity
sourcefn clone(&self) -> EepurlActivity
fn clone(&self) -> EepurlActivity
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 EepurlActivity
impl Debug for EepurlActivity
sourceimpl<'de> Deserialize<'de> for EepurlActivity
impl<'de> Deserialize<'de> for EepurlActivity
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 EepurlActivity
impl JsonSchema for EepurlActivity
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<EepurlActivity> for EepurlActivity
impl PartialEq<EepurlActivity> for EepurlActivity
sourcefn eq(&self, other: &EepurlActivity) -> bool
fn eq(&self, other: &EepurlActivity) -> bool
sourceimpl Serialize for EepurlActivity
impl Serialize for EepurlActivity
impl StructuralPartialEq for EepurlActivity
Auto Trait Implementations
impl RefUnwindSafe for EepurlActivity
impl Send for EepurlActivity
impl Sync for EepurlActivity
impl Unpin for EepurlActivity
impl UnwindSafe for EepurlActivity
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