pub struct CooklangIngredient {
pub name: String,
pub quantity: Option<Value>,
pub units: Option<String>,
}Fields§
§name: String§quantity: Option<Value>§units: Option<String>Trait Implementations§
Source§impl Clone for CooklangIngredient
impl Clone for CooklangIngredient
Source§fn clone(&self) -> CooklangIngredient
fn clone(&self) -> CooklangIngredient
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 CooklangIngredient
impl Debug for CooklangIngredient
Source§impl<'de> Deserialize<'de> for CooklangIngredient
impl<'de> Deserialize<'de> for CooklangIngredient
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 CooklangIngredient
impl RefUnwindSafe for CooklangIngredient
impl Send for CooklangIngredient
impl Sync for CooklangIngredient
impl Unpin for CooklangIngredient
impl UnsafeUnpin for CooklangIngredient
impl UnwindSafe for CooklangIngredient
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