pub struct TerminatedEventBody {
pub restart: Option<Value>,
/* private fields */
}
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.
Implementations§
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§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TerminatedEventBody
impl Debug for TerminatedEventBody
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 From<TerminatedEventBody> for Event
impl From<TerminatedEventBody> for Event
Source§fn from(body: TerminatedEventBody) -> Self
fn from(body: TerminatedEventBody) -> Self
Converts to this type from the input type.
Source§impl From<TerminatedEventBody> for ProtocolMessageContent
impl From<TerminatedEventBody> for ProtocolMessageContent
Source§fn from(body: TerminatedEventBody) -> Self
fn from(body: TerminatedEventBody) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TerminatedEventBody
impl PartialEq for TerminatedEventBody
Source§impl Serialize for TerminatedEventBody
impl Serialize for TerminatedEventBody
impl Eq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.