pub struct TerminatedEvent {
    pub restart: Option<Value>,
}Expand description
The event indicates that debugging of the debuggee has terminated. This does not mean that the debuggee itself has exited.
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 TerminatedEvent
 
impl Clone for TerminatedEvent
Source§fn clone(&self) -> TerminatedEvent
 
fn clone(&self) -> TerminatedEvent
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 TerminatedEvent
 
impl Debug for TerminatedEvent
Source§impl<'de> Deserialize<'de> for TerminatedEvent
 
impl<'de> Deserialize<'de> for TerminatedEvent
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 TerminatedEvent
impl RefUnwindSafe for TerminatedEvent
impl Send for TerminatedEvent
impl Sync for TerminatedEvent
impl Unpin for TerminatedEvent
impl UnwindSafe for TerminatedEvent
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