pub struct RunnerStopEvent {
pub success: bool,
pub id: String,
pub code: Option<i32>,
pub info: ProcInfo,
}Expand description
When a stop event finished this data is filled and returned.
Fields§
§success: boolIf the stop process was ok
id: StringId of the command
code: Option<i32>Command exit status code. 0 means OK
info: ProcInfoInformation about the terminated program
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunnerStopEvent
impl RefUnwindSafe for RunnerStopEvent
impl Send for RunnerStopEvent
impl Sync for RunnerStopEvent
impl Unpin for RunnerStopEvent
impl UnwindSafe for RunnerStopEvent
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