Struct mailchimp_api::types::AbuseComplaints
source · pub struct AbuseComplaints {
pub links: Vec<Links>,
pub abuse_reports: Vec<AbuseReports>,
pub list_id: String,
pub total_items: i64,
}
Expand description
A collection of abuse complaints for a specific list. An abuse complaint occurs when your recipient clicks to ‘report spam’ in their email program.
Fields
links: Vec<Links>
A collection of abuse complaints for a specific list. An abuse complaint occurs when your recipient clicks to ‘report spam’ in their email program.
abuse_reports: Vec<AbuseReports>
A collection of abuse complaints for a specific list. An abuse complaint occurs when your recipient clicks to ‘report spam’ in their email program.
list_id: String
A collection of abuse complaints for a specific list. An abuse complaint occurs when your recipient clicks to ‘report spam’ in their email program.
total_items: i64
A collection of abuse complaints for a specific list. An abuse complaint occurs when your recipient clicks to ‘report spam’ in their email program.
Trait Implementations
sourceimpl Clone for AbuseComplaints
impl Clone for AbuseComplaints
sourcefn clone(&self) -> AbuseComplaints
fn clone(&self) -> AbuseComplaints
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 AbuseComplaints
impl Debug for AbuseComplaints
sourceimpl<'de> Deserialize<'de> for AbuseComplaints
impl<'de> Deserialize<'de> for AbuseComplaints
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 AbuseComplaints
impl JsonSchema for AbuseComplaints
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<AbuseComplaints> for AbuseComplaints
impl PartialEq<AbuseComplaints> for AbuseComplaints
sourcefn eq(&self, other: &AbuseComplaints) -> bool
fn eq(&self, other: &AbuseComplaints) -> bool
sourceimpl Serialize for AbuseComplaints
impl Serialize for AbuseComplaints
impl StructuralPartialEq for AbuseComplaints
Auto Trait Implementations
impl RefUnwindSafe for AbuseComplaints
impl Send for AbuseComplaints
impl Sync for AbuseComplaints
impl Unpin for AbuseComplaints
impl UnwindSafe for AbuseComplaints
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