pub struct ProcessExit {
pub exit_code: Option<i32>,
pub signal: Option<String>,
pub lifetime_ms: u64,
}Fields§
§exit_code: Option<i32>§signal: Option<String>§lifetime_ms: u64Trait Implementations§
Source§impl Clone for ProcessExit
impl Clone for ProcessExit
Source§fn clone(&self) -> ProcessExit
fn clone(&self) -> ProcessExit
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 ProcessExit
impl Debug for ProcessExit
Source§impl<'de> Deserialize<'de> for ProcessExit
impl<'de> Deserialize<'de> for ProcessExit
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
Auto Trait Implementations§
impl Freeze for ProcessExit
impl RefUnwindSafe for ProcessExit
impl Send for ProcessExit
impl Sync for ProcessExit
impl Unpin for ProcessExit
impl UnsafeUnpin for ProcessExit
impl UnwindSafe for ProcessExit
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