Render

Trait Render 

Source
pub trait Render {
    // Required method
    fn render(&self) -> String;
}
Expand description

Renders this object into a format that can be viewed by external tooling (e.g. DotViz, HTML, etc.)

Required Methods§

Source

fn render(&self) -> String

Render this object into a visual representation.

Implementations on Foreign Types§

Source§

impl<N, E> Render for StableGraph<N, E>
where N: Render + Debug, E: Render + Debug,

Source§

fn render(&self) -> String

Implementors§

Source§

impl Render for EdgeInfo

Source§

impl<O> Render for NodeInfo<O>
where O: Operation,