pub struct Recipe {
pub name: String,
pub parameters: Vec<Parameter>,
pub documentation: Option<String>,
pub body: String,
pub dependencies: Vec<String>,
}Fields§
§name: String§parameters: Vec<Parameter>§documentation: Option<String>§body: String§dependencies: Vec<String>Trait Implementations§
impl StructuralPartialEq for Recipe
Auto Trait Implementations§
impl Freeze for Recipe
impl RefUnwindSafe for Recipe
impl Send for Recipe
impl Sync for Recipe
impl Unpin 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