pub struct BytecodeChunk {
pub opcodes: Vec<Opcode>,
pub name: String,
}Expand description
A named sequence of opcodes.
Fields§
§opcodes: Vec<Opcode>§name: StringImplementations§
Source§impl BytecodeChunk
impl BytecodeChunk
Auto Trait Implementations§
impl Freeze for BytecodeChunk
impl RefUnwindSafe for BytecodeChunk
impl Send for BytecodeChunk
impl Sync for BytecodeChunk
impl Unpin for BytecodeChunk
impl UnsafeUnpin for BytecodeChunk
impl UnwindSafe for BytecodeChunk
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