pub enum ProclistAction {
Kill {
pid: Pid,
},
}
Variants§
Trait Implementations§
Source§impl Clone for ProclistAction
impl Clone for ProclistAction
Source§fn clone(&self) -> ProclistAction
fn clone(&self) -> ProclistAction
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 ProclistAction
impl Debug for ProclistAction
Source§impl<'de> Deserialize<'de> for ProclistAction
impl<'de> Deserialize<'de> for ProclistAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProclistAction
impl RefUnwindSafe for ProclistAction
impl Send for ProclistAction
impl Sync for ProclistAction
impl Unpin for ProclistAction
impl UnwindSafe for ProclistAction
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