Struct guppy::graph::DotWrite [−][src]
pub struct DotWrite<'a, 'b> { /* fields omitted */ }Expand description
A write target for Dot graphs. Use with the write! macro.
Implementations
Sets a config option for whether backslashes should be escaped. Defaults to true.
This can be set to false if the visitor knows to output graphviz control characters.
Glue for usage of the write! macro.
This method should generally not be invoked manually, but rather through write! or similar
macros (println!, format! etc).
Defining this inherent method allows write! to work without callers needing to import the
std::fmt::Write trait.
Trait Implementations
Writes a string slice into this writer, returning whether the write succeeded. Read more