Trait rs_graph::vec::GraphIndexer[][src]

pub trait GraphIndexer<G>: Indexer {
    fn new(g: G) -> Self;
}

An indexer for a graph.

Required methods

fn new(g: G) -> Self[src]

Create a new indexer for the given graph.

Loading content...

Implementors

impl<'a, G> GraphIndexer<G> for EdgeIndexer<'a, G> where
    G: 'a + IndexGraphRef<'a> + Clone
[src]

impl<'a, G> GraphIndexer<G> for NodeIndexer<'a, G> where
    G: IndexGraphRef<'a> + Clone
[src]

Loading content...