pub struct ExitedEventBody {
pub exit_code: i64,
}
Fields§
§exit_code: i64
The exit code returned from the debuggee.
Trait Implementations§
Source§impl Clone for ExitedEventBody
impl Clone for ExitedEventBody
Source§fn clone(&self) -> ExitedEventBody
fn clone(&self) -> ExitedEventBody
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 ExitedEventBody
impl Debug for ExitedEventBody
Source§impl<'de> Deserialize<'de> for ExitedEventBody
impl<'de> Deserialize<'de> for ExitedEventBody
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 ExitedEventBody
impl PartialEq for ExitedEventBody
Source§impl Serialize for ExitedEventBody
impl Serialize for ExitedEventBody
impl StructuralPartialEq for ExitedEventBody
Auto Trait Implementations§
impl Freeze for ExitedEventBody
impl RefUnwindSafe for ExitedEventBody
impl Send for ExitedEventBody
impl Sync for ExitedEventBody
impl Unpin for ExitedEventBody
impl UnwindSafe for ExitedEventBody
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