Struct mailchimp_api::types::CollectionOfEvents
source · pub struct CollectionOfEvents {
pub links: Vec<Links>,
pub events: Vec<Event>,
pub total_items: i64,
}
Expand description
A collection of events for a given contact
Fields
links: Vec<Links>
A collection of events for a given contact
events: Vec<Event>
A collection of events for a given contact
total_items: i64
A collection of events for a given contact
Trait Implementations
sourceimpl Clone for CollectionOfEvents
impl Clone for CollectionOfEvents
sourcefn clone(&self) -> CollectionOfEvents
fn clone(&self) -> CollectionOfEvents
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 CollectionOfEvents
impl Debug for CollectionOfEvents
sourceimpl<'de> Deserialize<'de> for CollectionOfEvents
impl<'de> Deserialize<'de> for CollectionOfEvents
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 CollectionOfEvents
impl JsonSchema for CollectionOfEvents
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<CollectionOfEvents> for CollectionOfEvents
impl PartialEq<CollectionOfEvents> for CollectionOfEvents
sourcefn eq(&self, other: &CollectionOfEvents) -> bool
fn eq(&self, other: &CollectionOfEvents) -> bool
sourceimpl Serialize for CollectionOfEvents
impl Serialize for CollectionOfEvents
impl StructuralPartialEq for CollectionOfEvents
Auto Trait Implementations
impl RefUnwindSafe for CollectionOfEvents
impl Send for CollectionOfEvents
impl Sync for CollectionOfEvents
impl Unpin for CollectionOfEvents
impl UnwindSafe for CollectionOfEvents
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