pub struct Recipe {
pub attributes: Vec<Attribute>,
pub content: String,
pub dependencies: Vec<Dependency>,
pub name: TextNode,
pub parameters: Vec<Parameter>,
pub range: Range,
pub shebang: Option<TextNode>,
}Fields§
§attributes: Vec<Attribute>§content: String§dependencies: Vec<Dependency>§name: TextNode§parameters: Vec<Parameter>§range: Range§shebang: Option<TextNode>Implementations§
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 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