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