Enum x86_64::registers::debug::BreakpointCondition
source · #[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 copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
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
source§fn eq(&self, other: &BreakpointCondition) -> bool
fn eq(&self, other: &BreakpointCondition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.