pub struct DisconnectArguments {
pub restart: Option<bool>,
pub terminate_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. A client can only rely on this attribute being properly honored if a debug adapter returns true for the ‘supportTerminateDebuggee’ capability.
Trait Implementations§
Source§impl Clone for DisconnectArguments
impl Clone for DisconnectArguments
Source§fn clone(&self) -> DisconnectArguments
fn clone(&self) -> DisconnectArguments
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 DisconnectArguments
impl Debug for DisconnectArguments
Source§impl Default for DisconnectArguments
impl Default for DisconnectArguments
Source§fn default() -> DisconnectArguments
fn default() -> DisconnectArguments
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for DisconnectArguments
impl PartialEq for DisconnectArguments
Source§impl Serialize for DisconnectArguments
impl Serialize for DisconnectArguments
impl StructuralPartialEq for DisconnectArguments
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