pub trait TransformList<N, E>{
// Required method
fn apply(self, graph: &mut StableGraph<N, E>) -> Vec<NodeIndex>;
}Expand description
A list of transformations that should be applied to the graph.
pub trait TransformList<N, E>{
// Required method
fn apply(self, graph: &mut StableGraph<N, E>) -> Vec<NodeIndex>;
}A list of transformations that should be applied to the graph.