Trait dag::RichTreeGraph

source ·
pub trait RichTreeGraph: TreeGraph {
    // Required methods
    fn children(&self, node_index: Self::NodeIndex) -> Vec<Self::NodeIndex>;
    fn referrers(&self, node_index: Self::NodeIndex) -> Vec<Self::NodeIndex>;
}

Required Methods§

source

fn children(&self, node_index: Self::NodeIndex) -> Vec<Self::NodeIndex>

source

fn referrers(&self, node_index: Self::NodeIndex) -> Vec<Self::NodeIndex>

Object Safety§

This trait is not object safe.

Implementors§