pub trait DijkstraWeightedEdgeData<WeightType: DijkstraWeight> {
    fn weight(&self) -> WeightType;
}
Expand description

Edge data that has a weight usable for shortest path computation.

Required Methods

The weight of the edge.

Implementors