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

pub trait Edge: Clone + Debug + Eq + Ord + PartialEq + PartialOrd + Sync {
    fn head(&self) -> u64;
fn tail(&self) -> u64;
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