pub enum ProcessStartMethod {
Launch,
Attach,
AttachForSuspendedLaunch,
}
Expand description
Describes how the debug engine started debugging this process.
Variants§
Launch
Process was launched under the debugger.
Attach
Debugger attached to an existing process.
AttachForSuspendedLaunch
A project launcher component has launched a new process in a suspended state and then asked the debugger to attach.
Trait Implementations§
Source§impl Clone for ProcessStartMethod
impl Clone for ProcessStartMethod
Source§fn clone(&self) -> ProcessStartMethod
fn clone(&self) -> ProcessStartMethod
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProcessStartMethod
impl Debug for ProcessStartMethod
Source§impl<'de> Deserialize<'de> for ProcessStartMethod
impl<'de> Deserialize<'de> for ProcessStartMethod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProcessStartMethod
impl PartialEq for ProcessStartMethod
Source§impl Serialize for ProcessStartMethod
impl Serialize for ProcessStartMethod
impl Eq for ProcessStartMethod
impl StructuralPartialEq for ProcessStartMethod
Auto Trait Implementations§
impl Freeze for ProcessStartMethod
impl RefUnwindSafe for ProcessStartMethod
impl Send for ProcessStartMethod
impl Sync for ProcessStartMethod
impl Unpin for ProcessStartMethod
impl UnwindSafe for ProcessStartMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.