Struct mailchimp_api::types::ECommerceProduct
source · pub struct ECommerceProduct {Show 13 fields
pub links: Vec<Links>,
pub currency_code: String,
pub description: String,
pub handle: String,
pub id: String,
pub image_url: String,
pub images: Vec<Images>,
pub published_at_foreign: Option<DateTime<Utc>>,
pub title: String,
pub type_: String,
pub url: String,
pub variants: Vec<Variants>,
pub vendor: String,
}
Expand description
Information about a specific product.
Fields
links: Vec<Links>
Information about a specific product.
currency_code: String
Information about a specific product.
description: String
Information about a specific product.
handle: String
Information about a specific product.
id: String
Information about a specific product.
image_url: String
Information about a specific product.
images: Vec<Images>
Information about a specific product.
published_at_foreign: Option<DateTime<Utc>>
Information about a specific product.
title: String
Information about a specific product.
type_: String
Information about a specific product.
url: String
Information about a specific product.
variants: Vec<Variants>
Information about a specific product.
vendor: String
Information about a specific product.
Trait Implementations
sourceimpl Clone for ECommerceProduct
impl Clone for ECommerceProduct
sourcefn clone(&self) -> ECommerceProduct
fn clone(&self) -> ECommerceProduct
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 ECommerceProduct
impl Debug for ECommerceProduct
sourceimpl<'de> Deserialize<'de> for ECommerceProduct
impl<'de> Deserialize<'de> for ECommerceProduct
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 ECommerceProduct
impl JsonSchema for ECommerceProduct
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<ECommerceProduct> for ECommerceProduct
impl PartialEq<ECommerceProduct> for ECommerceProduct
sourcefn eq(&self, other: &ECommerceProduct) -> bool
fn eq(&self, other: &ECommerceProduct) -> bool
sourceimpl Serialize for ECommerceProduct
impl Serialize for ECommerceProduct
impl StructuralPartialEq for ECommerceProduct
Auto Trait Implementations
impl RefUnwindSafe for ECommerceProduct
impl Send for ECommerceProduct
impl Sync for ECommerceProduct
impl Unpin for ECommerceProduct
impl UnwindSafe for ECommerceProduct
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