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