#[repr(u8)]pub enum BreakpointCondition {
InstructionExecution = 0,
DataWrites = 1,
IoReadsWrites = 2,
DataReadsWrites = 3,
}
Expand description
The condition for a hardware breakpoint.
Variants§
InstructionExecution = 0
Instruction execution
DataWrites = 1
Data writes
IoReadsWrites = 2
I/O reads or writes
DataReadsWrites = 3
Data reads or writes but not instruction fetches
Implementations§
Trait Implementations§
Source§impl Clone for BreakpointCondition
impl Clone for BreakpointCondition
Source§fn clone(&self) -> BreakpointCondition
fn clone(&self) -> BreakpointCondition
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BreakpointCondition
impl Debug for BreakpointCondition
Source§impl PartialEq for BreakpointCondition
impl PartialEq for BreakpointCondition
impl Copy for BreakpointCondition
impl Eq for BreakpointCondition
impl StructuralPartialEq for BreakpointCondition
Auto Trait Implementations§
impl Freeze for BreakpointCondition
impl RefUnwindSafe for BreakpointCondition
impl Send for BreakpointCondition
impl Sync for BreakpointCondition
impl Unpin for BreakpointCondition
impl UnwindSafe for BreakpointCondition
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