pub struct TerminalExitedAction {
pub exit_code: Option<i64>,
}Expand description
Terminal process exited.
Fields§
§exit_code: Option<i64>Process exit code. undefined if the process was killed without an exit code.
Trait Implementations§
Source§impl Clone for TerminalExitedAction
impl Clone for TerminalExitedAction
Source§fn clone(&self) -> TerminalExitedAction
fn clone(&self) -> TerminalExitedAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TerminalExitedAction
impl Debug for TerminalExitedAction
Source§impl Default for TerminalExitedAction
impl Default for TerminalExitedAction
Source§fn default() -> TerminalExitedAction
fn default() -> TerminalExitedAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TerminalExitedAction
impl<'de> Deserialize<'de> for TerminalExitedAction
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 TerminalExitedAction
impl PartialEq for TerminalExitedAction
Source§fn eq(&self, other: &TerminalExitedAction) -> bool
fn eq(&self, other: &TerminalExitedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TerminalExitedAction
impl Serialize for TerminalExitedAction
impl StructuralPartialEq for TerminalExitedAction
Auto Trait Implementations§
impl Freeze for TerminalExitedAction
impl RefUnwindSafe for TerminalExitedAction
impl Send for TerminalExitedAction
impl Sync for TerminalExitedAction
impl Unpin for TerminalExitedAction
impl UnsafeUnpin for TerminalExitedAction
impl UnwindSafe for TerminalExitedAction
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