pub struct ProcessExitedNotification {
pub exit_code: i64,
pub process_handle: String,
pub stderr: String,
pub stderr_cap_reached: bool,
pub stdout: String,
pub stdout_cap_reached: bool,
}Fields§
§exit_code: i64§process_handle: String§stderr: String§stderr_cap_reached: bool§stdout: String§stdout_cap_reached: boolTrait Implementations§
Source§impl Clone for ProcessExitedNotification
impl Clone for ProcessExitedNotification
Source§fn clone(&self) -> ProcessExitedNotification
fn clone(&self) -> ProcessExitedNotification
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 ProcessExitedNotification
impl Debug for ProcessExitedNotification
Source§impl<'de> Deserialize<'de> for ProcessExitedNotification
impl<'de> Deserialize<'de> for ProcessExitedNotification
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 ProcessExitedNotification
impl PartialEq for ProcessExitedNotification
Source§fn eq(&self, other: &ProcessExitedNotification) -> bool
fn eq(&self, other: &ProcessExitedNotification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessExitedNotification
Auto Trait Implementations§
impl Freeze for ProcessExitedNotification
impl RefUnwindSafe for ProcessExitedNotification
impl Send for ProcessExitedNotification
impl Sync for ProcessExitedNotification
impl Unpin for ProcessExitedNotification
impl UnsafeUnpin for ProcessExitedNotification
impl UnwindSafe for ProcessExitedNotification
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