pub struct RunnerStartEvent {
pub success: bool,
pub pid: u32,
pub id: String,
}
Expand description
When a start event finished this data is filled and returned. Pid is 0 in case of error
Fields§
§success: bool
If the start process was ok
pid: u32
Pid of the created command
id: String
Id of the command
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunnerStartEvent
impl RefUnwindSafe for RunnerStartEvent
impl Send for RunnerStartEvent
impl Sync for RunnerStartEvent
impl Unpin for RunnerStartEvent
impl UnwindSafe for RunnerStartEvent
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