pub struct AttachOrLaunchArguments {
pub no_debug: Option<bool>,
pub restart_data: Option<Value>,
pub additional_data: Option<Value>,
}Expand description
Union of Attach and Launch arguments for the Restart request. Currently the same as LaunchRequestArguments but might not be in the future.
Fields§
§no_debug: Option<bool>If true, the launch request should launch the program without enabling debugging.
restart_data: Option<Value>Arbitrary data from the previous, restarted session.
The data is sent as the restart attribute of the terminated event.
The client should leave the data intact.
additional_data: Option<Value>The request may include additional implementation specific attributes.
Trait Implementations§
Source§impl Clone for AttachOrLaunchArguments
impl Clone for AttachOrLaunchArguments
Source§fn clone(&self) -> AttachOrLaunchArguments
fn clone(&self) -> AttachOrLaunchArguments
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 AttachOrLaunchArguments
impl Debug for AttachOrLaunchArguments
Source§impl Default for AttachOrLaunchArguments
impl Default for AttachOrLaunchArguments
Source§fn default() -> AttachOrLaunchArguments
fn default() -> AttachOrLaunchArguments
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachOrLaunchArguments
impl<'de> Deserialize<'de> for AttachOrLaunchArguments
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 AttachOrLaunchArguments
impl RefUnwindSafe for AttachOrLaunchArguments
impl Send for AttachOrLaunchArguments
impl Sync for AttachOrLaunchArguments
impl Unpin for AttachOrLaunchArguments
impl UnsafeUnpin for AttachOrLaunchArguments
impl UnwindSafe for AttachOrLaunchArguments
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