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

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[src]

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

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]

fn edge(&self, e: Self::Edge) -> &E[src]

fn edge_mut(&mut self, e: Self::Edge) -> &mut E[src]

Loading content...