[][src]Struct mailchimp::types::ListNote

pub struct ListNote {
    pub note_id: u64,
    pub created_at: String,
    pub created_by: String,
    pub note: String,
}

The most recent Note added about this member.

Fields

note_id: u64

The note id.

created_at: String

The date and time the note was created in ISO 8601 format.

created_by: String

The author of the note.

note: String

The content of the note.

Trait Implementations

impl Clone for ListNote[src]

impl Debug for ListNote[src]

impl Default for ListNote[src]

impl<'de> Deserialize<'de> for ListNote[src]

impl Serialize for ListNote[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.