pub trait DependencyNode<T, E>where T: PartialEq,{ // Required methods fn id(&self) -> T; fn dependencies(&self) -> Result<Vec<T>, E>; }
A node of a dependency graph.
The dependencies of a node
Will return an Err if the dependencies can’t be accessed
Err