pub struct IrProgram {
pub instructions: Vec<Ir>,
}Expand description
A compiled program: a sequence of IR instructions.
Fields§
§instructions: Vec<Ir>Implementations§
Trait Implementations§
impl StructuralPartialEq for IrProgram
Auto Trait Implementations§
impl Freeze for IrProgram
impl RefUnwindSafe for IrProgram
impl Send for IrProgram
impl Sync for IrProgram
impl Unpin for IrProgram
impl UnsafeUnpin for IrProgram
impl UnwindSafe for IrProgram
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