dot-structures 0.1.2

The structrures to support graphviz-rust library
Documentation
  • Coverage
  • 27.66%
    13 out of 47 items documented0 out of 16 items with examples
  • Size
  • Source code size: 7.55 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.57 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • besok

The structures of dot language

The set of components of the graphviz dot notation endeavouring to follow comparatively close to the language notation

Description:

    strict digraph t {           <= graph
        aa[color=green]          <= node aa and attributes in [..]
        subgraph v {             <= subgraph v
	     aa[shape=square]
	     subgraph vv{a2 -> b2}
	     aaa[color=red]
	     aaa -> subgraph { d -> aaa}  <= subgraph id is anon
        }
       aa -> be -> d -> aaa       <= type of the edge is chain
   }