Struct mailchimp_api::types::EventsData
source · pub struct EventsData {
pub is_syncing: bool,
pub name: String,
pub occurred_at: Option<DateTime<Utc>>,
pub properties: String,
}
Expand description
A new event for a specific list member
Fields
is_syncing: bool
A new event for a specific list member
name: String
The name of the folder.
occurred_at: Option<DateTime<Utc>>
A new event for a specific list member
properties: String
A new event for a specific list member
Trait Implementations
sourceimpl Clone for EventsData
impl Clone for EventsData
sourcefn clone(&self) -> EventsData
fn clone(&self) -> EventsData
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 EventsData
impl Debug for EventsData
sourceimpl<'de> Deserialize<'de> for EventsData
impl<'de> Deserialize<'de> for EventsData
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 EventsData
impl JsonSchema for EventsData
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<EventsData> for EventsData
impl PartialEq<EventsData> for EventsData
sourcefn eq(&self, other: &EventsData) -> bool
fn eq(&self, other: &EventsData) -> bool
sourceimpl Serialize for EventsData
impl Serialize for EventsData
impl StructuralPartialEq for EventsData
Auto Trait Implementations
impl RefUnwindSafe for EventsData
impl Send for EventsData
impl Sync for EventsData
impl Unpin for EventsData
impl UnwindSafe for EventsData
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