pub enum DebugItemBytecodes {
DBG_END_SEQUENCE,
DBG_ADVANCE_PC,
DBG_ADVANCE_LINE,
DBG_START_LOCAL,
DBG_START_LOCAL_EXTENDED,
DBG_END_LOCAL,
DBG_RESTART_LOCAL,
DBG_SET_PROLOGUE_END,
DBG_SET_EPILOGUE_BEGIN,
DBG_SET_FILE,
SPECIAL_OPCODE(u8),
}Variants§
DBG_END_SEQUENCE
DBG_ADVANCE_PC
DBG_ADVANCE_LINE
DBG_START_LOCAL
DBG_START_LOCAL_EXTENDED
DBG_END_LOCAL
DBG_RESTART_LOCAL
DBG_SET_PROLOGUE_END
DBG_SET_EPILOGUE_BEGIN
DBG_SET_FILE
SPECIAL_OPCODE(u8)
Implementations§
Trait Implementations§
Source§impl Debug for DebugItemBytecodes
impl Debug for DebugItemBytecodes
Source§impl PartialEq for DebugItemBytecodes
impl PartialEq for DebugItemBytecodes
impl StructuralPartialEq for DebugItemBytecodes
Auto Trait Implementations§
impl Freeze for DebugItemBytecodes
impl RefUnwindSafe for DebugItemBytecodes
impl Send for DebugItemBytecodes
impl Sync for DebugItemBytecodes
impl Unpin for DebugItemBytecodes
impl UnwindSafe for DebugItemBytecodes
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