[][src]Trait generic_graph::Vertex

pub trait Vertex<K, V> where
    K: Hash + Eq + Clone
{ fn get_value(&self) -> &V;
fn get_mutable(&mut self) -> &mut V;
fn key(&self) -> K; }

Required methods

fn get_value(&self) -> &V

fn get_mutable(&mut self) -> &mut V

fn key(&self) -> K

Loading content...

Implementors

impl<K: Hash + Eq + Clone, V> Vertex<K, V> for SimpleVertex<K, V>[src]

Loading content...