[][src]Trait rs_graph::attributes::NodeAttributes

pub trait NodeAttributes<'a, G, Attr> where
    G: Graph<'a>, 
{ fn node(&self, u: G::Node) -> &Attr;
fn node_mut(&mut self, u: G::Node) -> &mut Attr; }

Object with associated node attributes.

Required methods

fn node(&self, u: G::Node) -> &Attr

fn node_mut(&mut self, u: G::Node) -> &mut Attr

Loading content...

Implementors

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

Loading content...