pub trait DependencyNode<T, E>where
T: PartialEq,{
// Required methods
fn id(&self) -> T;
fn dependencies(&self) -> Result<Vec<T>, E>;
}Expand description
A node of a dependency graph.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".