Struct mailchimp_api::types::Templates
source · pub struct Templates {Show 15 fields
pub links: Vec<Links>,
pub active: bool,
pub category: String,
pub created_by: String,
pub date_created: Option<DateTime<Utc>>,
pub date_edited: Option<DateTime<Utc>>,
pub drag_and_drop: bool,
pub edited_by: String,
pub folder_id: String,
pub id: i64,
pub name: String,
pub responsive: bool,
pub share_url: String,
pub thumbnail: String,
pub type_: String,
}
Expand description
Information about a specific template.
Fields
links: Vec<Links>
Information about a specific template.
active: bool
Information about a specific template.
category: String
Information about a specific template.
created_by: String
Information about a specific template.
date_created: Option<DateTime<Utc>>
Information about a specific template.
date_edited: Option<DateTime<Utc>>
Information about a specific template.
drag_and_drop: bool
Information about a specific template.
edited_by: String
Information about a specific template.
folder_id: String
Information about a specific template.
id: i64
Information about a specific template.
name: String
Information about a specific template.
responsive: bool
Information about a specific template.
Information about a specific template.
thumbnail: String
Information about a specific template.
type_: String
Information about a specific template.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Templates
impl<'de> Deserialize<'de> for Templates
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 Templates
impl JsonSchema for Templates
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 Templates
Auto Trait Implementations
impl RefUnwindSafe for Templates
impl Send for Templates
impl Sync for Templates
impl Unpin for Templates
impl UnwindSafe for Templates
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