pub struct BytecodeParser {
pub opcode_table: HashMap<u16, ByteCodeFormat>,
pub prefix_opcode_table: HashMap<u16, ByteCodeFormat>,
}
Expand description
字节码解析器
Fields§
§opcode_table: HashMap<u16, ByteCodeFormat>
§prefix_opcode_table: HashMap<u16, ByteCodeFormat>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BytecodeParser
impl RefUnwindSafe for BytecodeParser
impl Send for BytecodeParser
impl Sync for BytecodeParser
impl Unpin for BytecodeParser
impl UnwindSafe for BytecodeParser
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