pub enum ProcessControlAction {
Stop,
Pause,
Resume,
}Expand description
Actions that can be performed on a process.
Defines the possible control actions that can be applied to a running process, such as stopping, pausing, or resuming.
Variants§
Trait Implementations§
Source§impl Clone for ProcessControlAction
impl Clone for ProcessControlAction
Source§fn clone(&self) -> ProcessControlAction
fn clone(&self) -> ProcessControlAction
Returns a duplicate of the value. Read more
1.0.0 · 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 ProcessControlAction
impl Debug for ProcessControlAction
Source§impl PartialEq for ProcessControlAction
impl PartialEq for ProcessControlAction
impl Copy for ProcessControlAction
impl Eq for ProcessControlAction
impl StructuralPartialEq for ProcessControlAction
Auto Trait Implementations§
impl Freeze for ProcessControlAction
impl RefUnwindSafe for ProcessControlAction
impl Send for ProcessControlAction
impl Sync for ProcessControlAction
impl Unpin for ProcessControlAction
impl UnwindSafe for ProcessControlAction
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