#[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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BreakCondition
Source§impl Debug for BreakCondition
impl Debug for BreakCondition
impl Eq for BreakCondition
Source§impl PartialEq for BreakCondition
impl PartialEq for BreakCondition
Source§fn eq(&self, other: &BreakCondition) -> bool
fn eq(&self, other: &BreakCondition) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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