[][src]Trait rs_graph::attributes::EdgeAttributes

pub trait EdgeAttributes<'a, G, Attr> where
    G: Graph<'a>, 
{ fn edge(&self, e: G::Edge) -> &Attr;
fn edge_mut(&mut self, e: G::Edge) -> &mut Attr; }

Object with associated edge attributes.

Required methods

fn edge(&self, e: G::Edge) -> &Attr

fn edge_mut(&mut self, e: G::Edge) -> &mut Attr

Loading content...

Implementors

impl<'a, ID, N: 'a, E: 'a> EdgeAttributes<'a, LinkedListGraph<ID, N, E>, E> for LinkedListGraph<ID, N, E> where
    ID: 'a + PrimInt + Unsigned
[src]

Loading content...