pub trait GraphDisplay {
    fn generate_from_graph(
        &self,
        graph: &StableDiGraph<GraphNodeType, EdgeType>
    ) -> Result<String>; }

Required Methods

Implementors