pub struct ProcessList {
pub processes: Vec<ProcessInfo>,
}Expand description
Process listing entry from the OS.
Fields§
§processes: Vec<ProcessInfo>Running processes.
Trait Implementations§
Source§impl Clone for ProcessList
impl Clone for ProcessList
Source§fn clone(&self) -> ProcessList
fn clone(&self) -> ProcessList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProcessList
impl Debug for ProcessList
Source§impl<'de> Deserialize<'de> for ProcessList
impl<'de> Deserialize<'de> for ProcessList
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 ProcessList
impl RefUnwindSafe for ProcessList
impl Send for ProcessList
impl Sync for ProcessList
impl Unpin for ProcessList
impl UnsafeUnpin for ProcessList
impl UnwindSafe for ProcessList
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