pub trait WithEdgeIndexProp: WithEdge {
    type EdgeIndexProp: EdgePropGet<Self, usize>;

    fn edge_index(&self) -> EdgeIndexProp<Self>;
}
Expand description

A graph that has a property that maps each edge to an integer in the range 0..num_edges.

Required Associated Types

Required Methods

Creates an edge index map.

Implementations on Foreign Types

Implementors