pub struct TerminatedEventBody {
pub restart: Option<Value>,
}Expand description
Arguments for a Terminated event.
Fields§
§restart: Option<Value>A debug adapter may set restart to true (or to an arbitrary object) to
request that the client restarts the session.
The value is not interpreted by the client and passed unmodified as an
attribute __restart to the launch and attach requests.
Trait Implementations§
Source§impl Clone for TerminatedEventBody
impl Clone for TerminatedEventBody
Source§fn clone(&self) -> TerminatedEventBody
fn clone(&self) -> TerminatedEventBody
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 TerminatedEventBody
impl Debug for TerminatedEventBody
Source§impl Default for TerminatedEventBody
impl Default for TerminatedEventBody
Source§fn default() -> TerminatedEventBody
fn default() -> TerminatedEventBody
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TerminatedEventBody
impl RefUnwindSafe for TerminatedEventBody
impl Send for TerminatedEventBody
impl Sync for TerminatedEventBody
impl Unpin for TerminatedEventBody
impl UnsafeUnpin for TerminatedEventBody
impl UnwindSafe for TerminatedEventBody
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