pub trait GraphDrawer<'a, G>where
    G: Graph<'a>,
{ type NodeAttr: NodeAttr; type EdgeAttr: EdgeAttr; fn node_default(&self) -> &Self::NodeAttr; fn node_default_mut(&mut self) -> &mut Self::NodeAttr; fn node(&self, u: G::Node) -> &Self::NodeAttr; fn node_mut(&mut self, u: G::Node) -> &mut Self::NodeAttr; fn edge_default(&self) -> &Self::EdgeAttr; fn edge_default_mut(&mut self) -> &mut Self::EdgeAttr; fn edge(&self, e: G::Edge) -> &Self::EdgeAttr; fn edge_mut(&mut self, e: G::Edge) -> &mut Self::EdgeAttr; fn add_drawing(&mut self); }
Expand description

Trait for drawing sequences of graphs.

Required Associated Types

Required Methods

Return the default node attribute.

Return the default node attribute.

Return the attributes of a node.

Return the attributes of a node.

Return the default edge attribute.

Return the default edge attribute.

Return the attributes of an edge.

Return the attributes of an edge.

Add drawing with current attributes.

Implementors