Struct mailchimp_api::types::ListUnsubscribed
source · pub struct ListUnsubscribed {
pub activity_type: Option<ListUnsubscribedActivityType>,
pub campaign_id: String,
pub campaign_title: String,
pub created_at_timestamp: Option<DateTime<Utc>>,
pub is_admin_unsubscribed: bool,
pub unsubscribe_reason: String,
}
Expand description
Activity feed item representing this contact unsubscribing from a list.
Fields
activity_type: Option<ListUnsubscribedActivityType>
Activity feed item representing this contact unsubscribing from a list.
campaign_id: String
Activity feed item representing this contact unsubscribing from a list.
campaign_title: String
Activity feed item representing this contact unsubscribing from a list.
created_at_timestamp: Option<DateTime<Utc>>
Activity feed item representing this contact unsubscribing from a list.
is_admin_unsubscribed: bool
Activity feed item representing this contact unsubscribing from a list.
unsubscribe_reason: String
Activity feed item representing this contact unsubscribing from a list.
Trait Implementations
sourceimpl Clone for ListUnsubscribed
impl Clone for ListUnsubscribed
sourcefn clone(&self) -> ListUnsubscribed
fn clone(&self) -> ListUnsubscribed
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 ListUnsubscribed
impl Debug for ListUnsubscribed
sourceimpl<'de> Deserialize<'de> for ListUnsubscribed
impl<'de> Deserialize<'de> for ListUnsubscribed
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 ListUnsubscribed
impl JsonSchema for ListUnsubscribed
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<ListUnsubscribed> for ListUnsubscribed
impl PartialEq<ListUnsubscribed> for ListUnsubscribed
sourcefn eq(&self, other: &ListUnsubscribed) -> bool
fn eq(&self, other: &ListUnsubscribed) -> bool
sourceimpl Serialize for ListUnsubscribed
impl Serialize for ListUnsubscribed
impl StructuralPartialEq for ListUnsubscribed
Auto Trait Implementations
impl RefUnwindSafe for ListUnsubscribed
impl Send for ListUnsubscribed
impl Sync for ListUnsubscribed
impl Unpin for ListUnsubscribed
impl UnwindSafe for ListUnsubscribed
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