pub struct Classifications {
pub can_serve_alone: Option<bool>,
pub alcoholic_items: Option<u32>,
pub dietary_label_info: Option<DietaryLabelInfo>,
pub instructions_for_use: Option<String>,
pub ingredients: Option<Vec<String>>,
pub additives: Option<Vec<String>>,
pub preparation_type: Option<String>,
pub food_business_operator: Option<FoodBusinessOperator>,
pub is_high_fat_salt_sugar: Option<bool>,
}
Fields§
§can_serve_alone: Option<bool>
§alcoholic_items: Option<u32>
§dietary_label_info: Option<DietaryLabelInfo>
§instructions_for_use: Option<String>
§ingredients: Option<Vec<String>>
§additives: Option<Vec<String>>
§preparation_type: Option<String>
§food_business_operator: Option<FoodBusinessOperator>
§is_high_fat_salt_sugar: Option<bool>
Trait Implementations§
Source§impl Debug for Classifications
impl Debug for Classifications
Source§impl Default for Classifications
impl Default for Classifications
Source§fn default() -> Classifications
fn default() -> Classifications
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Classifications
impl<'de> Deserialize<'de> for Classifications
Source§fn 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
Auto Trait Implementations§
impl Freeze for Classifications
impl RefUnwindSafe for Classifications
impl Send for Classifications
impl Sync for Classifications
impl Unpin for Classifications
impl UnwindSafe for Classifications
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more