#[repr(u8)]pub enum BreakCondition {
Execute = 0,
Write = 1,
Io = 2,
ReadWrite = 3,
}Expand description
breakpoint condition
Variants§
Execute = 0
break on execution
Write = 1
break on write
Io = 2
break on I/O (typically not supported)
ReadWrite = 3
break on read/write
Trait Implementations§
Source§impl Clone for BreakCondition
impl Clone for BreakCondition
Source§fn clone(&self) -> BreakCondition
fn clone(&self) -> BreakCondition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BreakCondition
impl Debug for BreakCondition
Source§impl PartialEq for BreakCondition
impl PartialEq for BreakCondition
impl Copy for BreakCondition
impl Eq for BreakCondition
impl StructuralPartialEq for BreakCondition
Auto Trait Implementations§
impl Freeze for BreakCondition
impl RefUnwindSafe for BreakCondition
impl Send for BreakCondition
impl Sync for BreakCondition
impl Unpin for BreakCondition
impl UnwindSafe for BreakCondition
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