[][src]Struct astrolab_smart_coffee_types::menu::get_access_menu_details::GetAccessMenuDetailsAggregation

pub struct GetAccessMenuDetailsAggregation {
    pub id: Option<String>,
    pub identifier: Option<String>,
    pub titles: Option<Vec<MenuTitleAggregation>>,
    pub names: Option<Vec<MenuNameAggregation>>,
    pub languages: Option<Vec<AccessMenuLanguageAggregation>>,
    pub descriptions: Option<Vec<MenuDescriptionAggregation>>,
    pub characteristics: Option<Vec<MenuCharacteristicAggregation>>,
    pub delivery_settings: Option<MenuDeliverySettingsAggregation>,
    pub logo: Option<String>,
    pub copied_logos: Option<Vec<MenuLogoAggregation>>,
    pub is_main: Option<bool>,
    pub is_published: bool,
    pub access_code: Option<String>,
    pub url_code: Option<String>,
    pub categories: Option<Vec<GetAccessMenuCategoryAggregation>>,
}

Fields

id: Option<String>identifier: Option<String>titles: Option<Vec<MenuTitleAggregation>>names: Option<Vec<MenuNameAggregation>>languages: Option<Vec<AccessMenuLanguageAggregation>>descriptions: Option<Vec<MenuDescriptionAggregation>>characteristics: Option<Vec<MenuCharacteristicAggregation>>delivery_settings: Option<MenuDeliverySettingsAggregation>copied_logos: Option<Vec<MenuLogoAggregation>>is_main: Option<bool>is_published: boolaccess_code: Option<String>url_code: Option<String>categories: Option<Vec<GetAccessMenuCategoryAggregation>>

Trait Implementations

impl Clone for GetAccessMenuDetailsAggregation[src]

impl Debug for GetAccessMenuDetailsAggregation[src]

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

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