#[repr(u8)]pub enum VContFeature {
Continue = 99,
ContinueWithSignal = 67,
Step = 115,
StepWithSignal = 83,
Stop = 116,
RangeStep = 114,
}
Expand description
The name of certain vCont features to be addressed when queried for which are supported.
Variants§
Continue = 99
Indicate that you support continuing until breakpoint
ContinueWithSignal = 67
Indicate that you support continuing with a signal
Step = 115
Indicate that you support singlestepping one instruction
StepWithSignal = 83
Indicate that you support singlestepping with a signal
Stop = 116
Indicate that you support stopping a thread
RangeStep = 114
Indicate that you support singlestepping while inside of a range
Trait Implementations§
Source§impl Clone for VContFeature
impl Clone for VContFeature
Source§fn clone(&self) -> VContFeature
fn clone(&self) -> VContFeature
Returns a copy 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 VContFeature
impl Debug for VContFeature
Source§impl PartialEq for VContFeature
impl PartialEq for VContFeature
impl Copy for VContFeature
impl StructuralPartialEq for VContFeature
Auto Trait Implementations§
impl Freeze for VContFeature
impl RefUnwindSafe for VContFeature
impl Send for VContFeature
impl Sync for VContFeature
impl Unpin for VContFeature
impl UnwindSafe for VContFeature
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