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

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

An indexer for a graph.

Required methods

fn new(g: G) -> Self

Create a new indexer for the given graph.

Loading content...

Implementors

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

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

Loading content...