[][src]Module safe_graph::graph

Directed Graph representation.

The Graph and its components are inspired and mostly copied and refactored from petgraph crate https://crates.io/crates/petgraph.

Re-exports

pub use crate::node::NodeTrait;

Structs

Graph

Graph<N, E, Ty> is a graph datastructure using an associative array of its node weights N.

Enums

Directed

Marker type for a directed graph.

Undirected

Marker type for an undirected graph.

Type Definitions

UndirectedGraph

A Graph with undirected edges.