pub struct ExportRecipeIngredient {
pub id: i64,
pub uuid: String,
pub recipe_id: i64,
pub recipe_uuid: String,
pub food_id: i64,
pub food_uuid: String,
pub quantity_g: f64,
}Fields§
§id: i64§uuid: String§recipe_id: i64§recipe_uuid: String§food_id: i64§food_uuid: String§quantity_g: f64Trait Implementations§
Source§impl Clone for ExportRecipeIngredient
impl Clone for ExportRecipeIngredient
Source§fn clone(&self) -> ExportRecipeIngredient
fn clone(&self) -> ExportRecipeIngredient
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExportRecipeIngredient
impl Debug for ExportRecipeIngredient
Source§impl<'de> Deserialize<'de> for ExportRecipeIngredient
impl<'de> Deserialize<'de> for ExportRecipeIngredient
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 ExportRecipeIngredient
impl RefUnwindSafe for ExportRecipeIngredient
impl Send for ExportRecipeIngredient
impl Sync for ExportRecipeIngredient
impl Unpin for ExportRecipeIngredient
impl UnsafeUnpin for ExportRecipeIngredient
impl UnwindSafe for ExportRecipeIngredient
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