pub struct ProcessSnapshot {
pub host: HostId,
pub topology_revision: TopologyRevision,
pub sort: ProcessSort,
pub rows: Vec<ProcessRow>,
pub truncated: bool,
}Expand description
Bounded process snapshot for one host revision.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
sort: ProcessSortApplied sort order.
rows: Vec<ProcessRow>Returned process rows.
truncated: boolWhether rows were omitted by the request limit.
Trait Implementations§
Source§impl Clone for ProcessSnapshot
impl Clone for ProcessSnapshot
Source§fn clone(&self) -> ProcessSnapshot
fn clone(&self) -> ProcessSnapshot
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 ProcessSnapshot
impl Debug for ProcessSnapshot
Source§impl<'de> Deserialize<'de> for ProcessSnapshot
impl<'de> Deserialize<'de> for ProcessSnapshot
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
Source§impl PartialEq for ProcessSnapshot
impl PartialEq for ProcessSnapshot
Source§fn eq(&self, other: &ProcessSnapshot) -> bool
fn eq(&self, other: &ProcessSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessSnapshot
impl Serialize for ProcessSnapshot
impl StructuralPartialEq for ProcessSnapshot
Auto Trait Implementations§
impl Freeze for ProcessSnapshot
impl RefUnwindSafe for ProcessSnapshot
impl Send for ProcessSnapshot
impl Sync for ProcessSnapshot
impl Unpin for ProcessSnapshot
impl UnsafeUnpin for ProcessSnapshot
impl UnwindSafe for ProcessSnapshot
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