[][src]Struct astrolab_smart_coffee_types::digimenu::menu::get_products::ProductAggregation

pub struct ProductAggregation {
    pub id: Option<String>,
    pub identifier: Option<String>,
    pub category: Option<CategoryProductAggregation>,
    pub names: Option<Vec<NameAggregation>>,
    pub short_descriptions: Option<Vec<DescriptionAggregation>>,
    pub long_descriptions: Option<Vec<DescriptionAggregation>>,
    pub price: Option<ProductPriceAggregation>,
    pub discount: Option<ProductDiscountAggregation>,
    pub unit: Option<ProductUnitAggregation>,
    pub picture: Option<ProductPictureAggregation>,
    pub copied_pictures: Option<Vec<ProductPictureAggregation>>,
    pub order: Option<i32>,
    pub is_published: Option<bool>,
    pub tags: Option<Vec<String>>,
    pub choices: Option<Vec<CategoryProductChoiceAggregation>>,
}

Fields

id: Option<String>identifier: Option<String>category: Option<CategoryProductAggregation>names: Option<Vec<NameAggregation>>short_descriptions: Option<Vec<DescriptionAggregation>>long_descriptions: Option<Vec<DescriptionAggregation>>price: Option<ProductPriceAggregation>discount: Option<ProductDiscountAggregation>unit: Option<ProductUnitAggregation>picture: Option<ProductPictureAggregation>copied_pictures: Option<Vec<ProductPictureAggregation>>order: Option<i32>is_published: Option<bool>tags: Option<Vec<String>>choices: Option<Vec<CategoryProductChoiceAggregation>>

Trait Implementations

impl Clone for ProductAggregation[src]

impl Debug for ProductAggregation[src]

impl<'de> Deserialize<'de> for ProductAggregation[src]

impl Serialize for ProductAggregation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,