[][src]Trait btree_graph::GetEdgeValue

pub trait GetEdgeValue<V, E> {
    pub fn get_edge_value(&self, x: E) -> Option<&(V, V)>;
}

GetEdgeValue returns the value associated with the edge (x, y).

Required methods

pub fn get_edge_value(&self, x: E) -> Option<&(V, V)>[src]

Loading content...

Implementors

impl<V, E> GetEdgeValue<V, E> for BTreeGraph<V, E> where
    V: Ord,
    E: Ord
[src]

Loading content...