pub enum ArmBreakpointKind {
Thumb16,
Thumb32,
Arm32,
}
Expand description
ARM-specific breakpoint kinds.
Extracted from the GDB documentation at E.5.1.1 ARM Breakpoint Kinds
Variants§
Thumb16
16-bit Thumb mode breakpoint.
Thumb32
32-bit Thumb mode (Thumb-2) breakpoint.
Arm32
32-bit ARM mode breakpoint.
Trait Implementations§
Source§impl BreakpointKind for ArmBreakpointKind
impl BreakpointKind for ArmBreakpointKind
Source§fn from_usize(kind: usize) -> Option<Self>
fn from_usize(kind: usize) -> Option<Self>
Parse
Self
from a raw usize.Auto Trait Implementations§
impl Freeze for ArmBreakpointKind
impl RefUnwindSafe for ArmBreakpointKind
impl Send for ArmBreakpointKind
impl Sync for ArmBreakpointKind
impl Unpin for ArmBreakpointKind
impl UnwindSafe for ArmBreakpointKind
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