pub struct Bytecode {
pub instructions: Instructions,
pub constants: Vec<Rc<Object>>,
pub debug_info: DebugInfo,
pub function_debug_info: HashMap<usize, DebugInfo>,
}Fields§
§instructions: Instructions§constants: Vec<Rc<Object>>§debug_info: DebugInfo§function_debug_info: HashMap<usize, DebugInfo>Implementations§
Source§impl Bytecode
impl Bytecode
pub fn string(&self) -> String
pub fn debug_view(&self) -> BytecodeDebugView
Trait Implementations§
impl StructuralPartialEq for Bytecode
Auto Trait Implementations§
impl !RefUnwindSafe for Bytecode
impl !Send for Bytecode
impl !Sync for Bytecode
impl !UnwindSafe for Bytecode
impl Freeze for Bytecode
impl Unpin for Bytecode
impl UnsafeUnpin for Bytecode
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