Skip to main content

DefaultTree

Type Alias DefaultTree 

Source
pub type DefaultTree = DefaultStore<PidNode>;
Expand description

Process tree store. See DefaultStore.

Aliased Type§

pub struct DefaultTree { /* private fields */ }

Trait Implementations§

Source§

impl TreeStore for DefaultTree

Source§

fn get_node(&self, pid: u32) -> Option<PidNode>

Get a tree node by PID.
Source§

fn insert_node(&self, pid: u32, node: PidNode)

Insert or update a tree node.
Source§

fn all_pids(&self) -> Vec<u32>

Get all PIDs in the tree.