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