Struct mailchimp_api::types::ChimpChatter
source · pub struct ChimpChatter {
pub campaign_id: String,
pub list_id: String,
pub message: String,
pub title: String,
pub type_: Option<GetActivityFeedChimpChatterResponseType>,
pub update_time: Option<DateTime<Utc>>,
pub url: String,
}
Expand description
A Chimp Chatter message
Fields
campaign_id: String
A Chimp Chatter message
list_id: String
A Chimp Chatter message
message: String
A Chimp Chatter message
title: String
A Chimp Chatter message
type_: Option<GetActivityFeedChimpChatterResponseType>
A Chimp Chatter message
update_time: Option<DateTime<Utc>>
A Chimp Chatter message
url: String
A Chimp Chatter message
Trait Implementations
sourceimpl Clone for ChimpChatter
impl Clone for ChimpChatter
sourcefn clone(&self) -> ChimpChatter
fn clone(&self) -> ChimpChatter
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 ChimpChatter
impl Debug for ChimpChatter
sourceimpl<'de> Deserialize<'de> for ChimpChatter
impl<'de> Deserialize<'de> for ChimpChatter
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 ChimpChatter
impl JsonSchema for ChimpChatter
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<ChimpChatter> for ChimpChatter
impl PartialEq<ChimpChatter> for ChimpChatter
sourcefn eq(&self, other: &ChimpChatter) -> bool
fn eq(&self, other: &ChimpChatter) -> bool
sourceimpl Serialize for ChimpChatter
impl Serialize for ChimpChatter
impl StructuralPartialEq for ChimpChatter
Auto Trait Implementations
impl RefUnwindSafe for ChimpChatter
impl Send for ChimpChatter
impl Sync for ChimpChatter
impl Unpin for ChimpChatter
impl UnwindSafe for ChimpChatter
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