[][src]Module graphrepresentations::graph

Defines different traits of graphs.

Structs

Edge

A container for an edge. Can be used to add nodes to a MutableGraph.

EdgeRef

A container for an edge. Is returned by Graph when a complete edge instance is requested.

Node

A container for a node. Can be used to add nodes to a MutableGraph.

NodeRef

A container for a node. Is returned by Graph when a complete node instance is requested.

Enums

GraphModificationError

An error type for graph modifications. This type is used by the MutableGraph trait.

Traits

BackwardNavigableGraph

A backward navigable graph.

ForwardNavigableGraph

A forward navigable graph.

Graph

A basic graph.

MutableGraph

A mutable graph.