Struct graph::Edge

pub struct Edge<V> {
    pub data: V,
    pub dest: NodeIdentifier,
}

Represents a directed edge within a Graph

Fields

data
dest

Trait Implementations

impl<V: Show> Show for Edge<V>

fn fmt(&self, f: &mut Formatter) -> Result