pub struct FunctionBlock {
pub instructions: Vec<InstructionData>,
}Expand description
A block that contains Vermilion IR.
Fields§
§instructions: Vec<InstructionData>A list of instructions in the block.
Trait Implementations§
Source§impl Clone for FunctionBlock
impl Clone for FunctionBlock
Source§fn clone(&self) -> FunctionBlock
fn clone(&self) -> FunctionBlock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FunctionBlock
impl RefUnwindSafe for FunctionBlock
impl Send for FunctionBlock
impl Sync for FunctionBlock
impl Unpin for FunctionBlock
impl UnsafeUnpin for FunctionBlock
impl UnwindSafe for FunctionBlock
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