pub trait Create: Build + Default { // Required method fn with_capacity(nodes: usize, edges: usize) -> Self; }
A graph that can be created