pub struct ExitedEventBody {
pub exit_code: i64,
}Expand description
Arguments for a Exited event
Fields§
§exit_code: i64The 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 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 ExitedEventBody
impl Debug for ExitedEventBody
Source§impl Default for ExitedEventBody
impl Default for ExitedEventBody
Source§fn default() -> ExitedEventBody
fn default() -> ExitedEventBody
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExitedEventBody
impl RefUnwindSafe for ExitedEventBody
impl Send for ExitedEventBody
impl Sync for ExitedEventBody
impl Unpin for ExitedEventBody
impl UnsafeUnpin 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