pub trait DataMap: Data {
    // Required methods
    fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight>;
    fn edge_weight(&self, id: Self::EdgeId) -> Option<&Self::EdgeWeight>;
}
Expand description

Access node and edge weights (associated data).

Required Methods§

source

fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight>

source

fn edge_weight(&self, id: Self::EdgeId) -> Option<&Self::EdgeWeight>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, G> DataMap for &'a G
where G: DataMap,

source§

impl<'a, G> DataMap for &'a mut G
where G: DataMap,

Implementors§

source§

impl<'a, G> DataMap for Frozen<'a, G>
where G: DataMap,

source§

impl<E, Ix> DataMap for List<E, Ix>
where Ix: IndexType,

source§

impl<G> DataMap for Reversed<G>
where G: DataMap,

source§

impl<G, F> DataMap for NodeFiltered<G, F>
where G: DataMap, F: FilterNode<<G as GraphBase>::NodeId>,

source§

impl<N, E, Ty, Ix> DataMap for StableGraph<N, E, Ty, Ix>
where Ty: EdgeType, Ix: IndexType,

source§

impl<N, E, Ty, Ix> DataMap for Graph<N, E, Ty, Ix>
where Ty: EdgeType, Ix: IndexType,