pub struct Stage {
pub pre_from_instructions: Vec<PreFromInstruction>,
pub from: From,
pub instructions: Vec<Instruction>,
}Expand description
The Stage is the unit which sits above the Instruction. It contains a vector of instructions to be placed before and after the FROM command
Fields§
§pre_from_instructions: Vec<PreFromInstruction>§from: From§instructions: Vec<Instruction>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stage
impl RefUnwindSafe for Stage
impl Send for Stage
impl Sync for Stage
impl Unpin for Stage
impl UnwindSafe for Stage
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