pub struct Recipe {
pub id: i64,
pub uuid: String,
pub food_id: i64,
pub portions: f64,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: i64§uuid: String§food_id: i64§portions: f64§created_at: String§updated_at: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Recipe
impl RefUnwindSafe for Recipe
impl Send for Recipe
impl Sync for Recipe
impl Unpin for Recipe
impl UnsafeUnpin for Recipe
impl UnwindSafe for Recipe
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