[][src]Crate uvm_install_graph

uvm_install_graph is a helper library to visualize and traverse a unity installation manifest.

Re-exports

pub use daggy::petgraph;

Structs

InstallGraph

A simple directed acyclic graph representation of a unity version and it's modules. This graph allows the traversal of to be installed modules in a topological order. It is also possible to query submodule and or dependencies for a given module.

Enums

InstallStatus

InstallStatus is a marker enum to mark nodes in the InstallGraph based on the known installation status. The default is Unknown.

Traits

Walker

A walker is a traversal state, but where part of the traversal information is supplied manually to each next call.