pub enum ProcessActionResponse {
Created(ProcessId),
Waited(Receiver<()>),
Killed,
KilledAll,
List(Vec<ProcessId>),
Error(ProcessManagerError),
}Variants§
Created(ProcessId)
Waited(Receiver<()>)
Killed
KilledAll
List(Vec<ProcessId>)
Error(ProcessManagerError)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProcessActionResponse
impl RefUnwindSafe for ProcessActionResponse
impl Send for ProcessActionResponse
impl !Sync for ProcessActionResponse
impl Unpin for ProcessActionResponse
impl UnwindSafe for ProcessActionResponse
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