[][src]Trait petgraph::data::DataMap

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

Access node and edge weights (associated data).

Required methods

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

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

Loading content...

Implementations on Foreign Types

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

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

Loading content...

Implementors

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

impl<G> DataMap for Reversed<G> where
    G: DataMap
[src]

impl<G, F> DataMap for NodeFiltered<G, F> where
    G: DataMap,
    F: FilterNode<G::NodeId>, 
[src]

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

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

Loading content...