[][src]Struct astrolab_smart_coffee_types::menu::get_list_menu_ads::MenuAdAggregation

pub struct MenuAdAggregation {
    pub id: Option<String>,
    pub menus: Option<Vec<MenuIdAggregation>>,
    pub names: Option<Vec<MenuAdNameAggregation>>,
    pub descriptions: Option<Vec<MenuAdDescriptionAggregation>>,
    pub kind: Option<String>,
    pub position: Option<String>,
    pub pictures: Option<MenuAdPictureAggregation>,
    pub products: Option<Vec<ProductIdAggregation>>,
    pub external_url: Option<String>,
    pub start_date: Option<String>,
    pub end_date: Option<String>,
    pub is_published: Option<bool>,
    pub ad_clicks_count: Option<i32>,
    pub url_clicks_count: Option<i32>,
}

Fields

id: Option<String>menus: Option<Vec<MenuIdAggregation>>names: Option<Vec<MenuAdNameAggregation>>descriptions: Option<Vec<MenuAdDescriptionAggregation>>kind: Option<String>position: Option<String>pictures: Option<MenuAdPictureAggregation>products: Option<Vec<ProductIdAggregation>>external_url: Option<String>start_date: Option<String>end_date: Option<String>is_published: Option<bool>ad_clicks_count: Option<i32>url_clicks_count: Option<i32>

Trait Implementations

impl Clone for MenuAdAggregation[src]

impl Debug for MenuAdAggregation[src]

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

impl Serialize for MenuAdAggregation[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>,