pub trait DepsCheck<Input> {
// Required method
fn to_node_indices(&self) -> Vec<NodeIndex>;
}Expand description
Trait for converting dependencies into node IDs
Required Methods§
Sourcefn to_node_indices(&self) -> Vec<NodeIndex>
fn to_node_indices(&self) -> Vec<NodeIndex>
Convert dependencies to node indices
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".