Struct mailchimp_api::types::MemberActivityEventsData
source · pub struct MemberActivityEventsData {
pub links: Vec<Links>,
pub activity: Vec<ActivityOneOf>,
pub email_id: String,
pub list_id: String,
}
Expand description
The member activity events for a given member.
Fields
links: Vec<Links>
The member activity events for a given member.
activity: Vec<ActivityOneOf>
The member activity events for a given member.
email_id: String
The member activity events for a given member.
list_id: String
The member activity events for a given member.
Trait Implementations
sourceimpl Clone for MemberActivityEventsData
impl Clone for MemberActivityEventsData
sourcefn clone(&self) -> MemberActivityEventsData
fn clone(&self) -> MemberActivityEventsData
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 MemberActivityEventsData
impl Debug for MemberActivityEventsData
sourceimpl<'de> Deserialize<'de> for MemberActivityEventsData
impl<'de> Deserialize<'de> for MemberActivityEventsData
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 MemberActivityEventsData
impl JsonSchema for MemberActivityEventsData
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<MemberActivityEventsData> for MemberActivityEventsData
impl PartialEq<MemberActivityEventsData> for MemberActivityEventsData
sourcefn eq(&self, other: &MemberActivityEventsData) -> bool
fn eq(&self, other: &MemberActivityEventsData) -> bool
sourceimpl Serialize for MemberActivityEventsData
impl Serialize for MemberActivityEventsData
impl StructuralPartialEq for MemberActivityEventsData
Auto Trait Implementations
impl RefUnwindSafe for MemberActivityEventsData
impl Send for MemberActivityEventsData
impl Sync for MemberActivityEventsData
impl Unpin for MemberActivityEventsData
impl UnwindSafe for MemberActivityEventsData
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