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