Struct mailchimp_api::types::Notes
source · pub struct Notes {
pub created_at: Option<DateTime<Utc>>,
pub created_by: String,
pub note: String,
pub note_id: i64,
}
Expand description
The most recent Note added about this member.
Fields
created_at: Option<DateTime<Utc>>
The most recent Note added about this member.
created_by: String
The most recent Note added about this member.
note: String
The most recent Note added about this member.
note_id: i64
The most recent Note added about this member.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Notes
impl<'de> Deserialize<'de> for Notes
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 Notes
impl JsonSchema for Notes
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 moreimpl StructuralPartialEq for Notes
Auto Trait Implementations
impl RefUnwindSafe for Notes
impl Send for Notes
impl Sync for Notes
impl Unpin for Notes
impl UnwindSafe for Notes
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