pub struct TerminatedEventBody {
pub restart: Option<Value>,
}
Fields§
§restart: Option<Value>
A debug adapter may set ‘restart’ to true (or to an arbitrary object) to request that the front end 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 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 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
Source§impl<'de> Deserialize<'de> for TerminatedEventBody
impl<'de> Deserialize<'de> for TerminatedEventBody
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 TerminatedEventBody
impl PartialEq for TerminatedEventBody
Source§impl Serialize for TerminatedEventBody
impl Serialize for TerminatedEventBody
impl StructuralPartialEq for TerminatedEventBody
Auto Trait Implementations§
impl Freeze for TerminatedEventBody
impl RefUnwindSafe for TerminatedEventBody
impl Send for TerminatedEventBody
impl Sync for TerminatedEventBody
impl Unpin 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