pub trait DumpInGraphviz: QueryableGraph + DirectedOrNot {
// Provided method
fn dump_in_graphviz<W>(&self, out: &mut W, graph_name: &str) -> Result<()>
where W: Write { ... }
}Expand description
A trait with default implementation for dumping a (directed or not) graph in graphviz format.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.