pub struct DisconnectArguments {
pub restart: Option<bool>,
pub terminate_debuggee: Option<bool>,
pub suspend_debuggee: Option<bool>,
}
Expand description
Arguments for disconnect
request.
Fields§
§restart: Option<bool>
A value of true indicates that this disconnect
request is part of a restart sequence.
terminate_debuggee: Option<bool>
Indicates whether the debuggee should be terminated when the debugger is disconnected.
If unspecified, the debug adapter is free to do whatever it thinks is best.
The attribute is only honored by a debug adapter if the corresponding capability supportTerminateDebuggee
is true.
suspend_debuggee: Option<bool>
Indicates whether the debuggee should stay suspended when the debugger is disconnected.
If unspecified, the debuggee should resume execution.
The attribute is only honored by a debug adapter if the corresponding capability supportSuspendDebuggee
is true.
Trait Implementations§
Source§impl Clone for DisconnectArguments
impl Clone for DisconnectArguments
Source§fn clone(&self) -> DisconnectArguments
fn clone(&self) -> DisconnectArguments
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 DisconnectArguments
impl Debug for DisconnectArguments
Source§impl<'de> Deserialize<'de> for DisconnectArguments
impl<'de> Deserialize<'de> for DisconnectArguments
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
Auto Trait Implementations§
impl Freeze for DisconnectArguments
impl RefUnwindSafe for DisconnectArguments
impl Send for DisconnectArguments
impl Sync for DisconnectArguments
impl Unpin for DisconnectArguments
impl UnwindSafe for DisconnectArguments
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