walrus 0.8.0

A library for performing WebAssembly transformations
Documentation
//! Utilities for emitting GraphViz dot files.

/// Render something into a GraphViz dot file.
pub trait Dot {
    /// Render as dot into the given string.
    fn dot(&self, out: &mut String);
}