pub struct SpawnSnapshot {
pub cursor: SpawnCursor,
pub ring_bound: u64,
pub live: Vec<LiveSpawn>,
}Expand description
Atomic live-process census and the cursor at which it was observed.
Fields§
§cursor: SpawnCursor§ring_bound: u64Maximum retained event count for this daemon.
live: Vec<LiveSpawn>Trait Implementations§
Source§impl Clone for SpawnSnapshot
impl Clone for SpawnSnapshot
Source§fn clone(&self) -> SpawnSnapshot
fn clone(&self) -> SpawnSnapshot
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 SpawnSnapshot
impl Debug for SpawnSnapshot
Source§impl<'de> Deserialize<'de> for SpawnSnapshot
impl<'de> Deserialize<'de> for SpawnSnapshot
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
impl Eq for SpawnSnapshot
Source§impl PartialEq for SpawnSnapshot
impl PartialEq for SpawnSnapshot
Source§impl Serialize for SpawnSnapshot
impl Serialize for SpawnSnapshot
impl StructuralPartialEq for SpawnSnapshot
Auto Trait Implementations§
impl Freeze for SpawnSnapshot
impl RefUnwindSafe for SpawnSnapshot
impl Send for SpawnSnapshot
impl Sync for SpawnSnapshot
impl Unpin for SpawnSnapshot
impl UnsafeUnpin for SpawnSnapshot
impl UnwindSafe for SpawnSnapshot
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