pub enum ProcessAction {
Create(String),
CreateAdvanced(String, CreateOptions),
Wait(ProcessId),
Kill(ProcessId),
KillAdvanced(ProcessId, ProcessSignal),
KillAll,
List,
}Variants§
Create(String)
CreateAdvanced(String, CreateOptions)
Wait(ProcessId)
Kill(ProcessId)
KillAdvanced(ProcessId, ProcessSignal)
KillAll
List
Auto Trait Implementations§
impl Freeze for ProcessAction
impl RefUnwindSafe for ProcessAction
impl Send for ProcessAction
impl Sync for ProcessAction
impl Unpin for ProcessAction
impl UnwindSafe for ProcessAction
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