#[repr(u32)]pub enum BreakpointEventType {
Show 13 variants
InvalidType = 1,
Added = 2,
Removed = 4,
LocationsAdded = 8,
LocationsRemoved = 16,
LocationsResolved = 32,
Enabled = 64,
Disabled = 128,
CommandChanged = 256,
ConditionChanged = 512,
IgnoreChanged = 1_024,
ThreadChanged = 2_048,
AutoContinueChanged = 4_096,
}Variants§
InvalidType = 1
Added = 2
Removed = 4
LocationsAdded = 8
LocationsRemoved = 16
LocationsResolved = 32
Enabled = 64
Disabled = 128
CommandChanged = 256
ConditionChanged = 512
IgnoreChanged = 1_024
ThreadChanged = 2_048
AutoContinueChanged = 4_096
Trait Implementations§
Source§impl Clone for BreakpointEventType
impl Clone for BreakpointEventType
Source§fn clone(&self) -> BreakpointEventType
fn clone(&self) -> BreakpointEventType
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 BreakpointEventType
impl Debug for BreakpointEventType
Source§impl PartialEq for BreakpointEventType
impl PartialEq for BreakpointEventType
Source§impl PartialOrd for BreakpointEventType
impl PartialOrd for BreakpointEventType
impl Copy for BreakpointEventType
impl Eq for BreakpointEventType
impl StructuralPartialEq for BreakpointEventType
Auto Trait Implementations§
impl Freeze for BreakpointEventType
impl RefUnwindSafe for BreakpointEventType
impl Send for BreakpointEventType
impl Sync for BreakpointEventType
impl Unpin for BreakpointEventType
impl UnwindSafe for BreakpointEventType
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