Trait falcon::graph::Edge[][src]

pub trait Edge: Clone + Sync {
    fn head(&self) -> usize;
fn tail(&self) -> usize;
fn dot_label(&self) -> String; }

Required Methods

The index of the head vertex.

The index of the tail vertex.

A string to display in dot graphviz format.

Implementors