Struct mailchimp_api::types::EcommerceProductVariants
source · pub struct EcommerceProductVariants {
pub links: Vec<Links>,
pub product_id: String,
pub store_id: String,
pub total_items: i64,
pub variants: Vec<Variants>,
}
Expand description
A collection of a product’s variants.
Fields
links: Vec<Links>
A collection of a product’s variants.
product_id: String
A collection of a product’s variants.
store_id: String
A collection of a product’s variants.
total_items: i64
A collection of a product’s variants.
variants: Vec<Variants>
A collection of a product’s variants.
Trait Implementations
sourceimpl Clone for EcommerceProductVariants
impl Clone for EcommerceProductVariants
sourcefn clone(&self) -> EcommerceProductVariants
fn clone(&self) -> EcommerceProductVariants
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 EcommerceProductVariants
impl Debug for EcommerceProductVariants
sourceimpl<'de> Deserialize<'de> for EcommerceProductVariants
impl<'de> Deserialize<'de> for EcommerceProductVariants
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 EcommerceProductVariants
impl JsonSchema for EcommerceProductVariants
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<EcommerceProductVariants> for EcommerceProductVariants
impl PartialEq<EcommerceProductVariants> for EcommerceProductVariants
sourcefn eq(&self, other: &EcommerceProductVariants) -> bool
fn eq(&self, other: &EcommerceProductVariants) -> bool
sourceimpl Serialize for EcommerceProductVariants
impl Serialize for EcommerceProductVariants
impl StructuralPartialEq for EcommerceProductVariants
Auto Trait Implementations
impl RefUnwindSafe for EcommerceProductVariants
impl Send for EcommerceProductVariants
impl Sync for EcommerceProductVariants
impl Unpin for EcommerceProductVariants
impl UnwindSafe for EcommerceProductVariants
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