Trait fera_graph::props::WithEdgeIndexProp [] [src]

pub trait WithEdgeIndexProp: WithEdge {
    type EdgeIndexProp: EdgePropGet<Self, usize>;
    fn edge_index(&self) -> EdgeIndexProp<Self>;
}

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

Associated Types

Required Methods

Creates an edge index map.

Implementations on Foreign Types

impl<'a, G: WithEdgeIndexProp> WithEdgeIndexProp for &'a G
[src]

Implementors