Function graphviz::render_opts [] [src]

pub fn render_opts<'a, N, E, G, W>(
    g: &'a G,
    w: &mut W,
    options: &[RenderOption]
) -> Result<()> where
    N: Clone + 'a,
    E: Clone + 'a,
    G: Labeller<'a, Node = N, Edge = E> + GraphWalk<'a, Node = N, Edge = E>,
    W: Write
🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Renders directed graph g into the writer w in DOT syntax. (Main entry point for the library.)