diff options
author | seancarroll <seanc28@gmail.com> | 2021-01-03 00:04:49 -0600 |
---|---|---|
committer | seancarroll <seanc28@gmail.com> | 2021-01-03 00:04:49 -0600 |
commit | 56677588b48b6317198345b2c29df90ebff48c20 (patch) | |
tree | 6a58ed46d130e5f75af25a79f2dc9d5ef86a366a | |
parent | c8e4957a260514217ef2a1ec2526359aa73f0bbd (diff) | |
download | dotavious-56677588b48b6317198345b2c29df90ebff48c20.zip |
we arent using Config and i'm not 100% sure what if any configuration or rendering options I want to support so for now delete
-rw-r--r-- | src/lib.rs | 21 |
1 files changed, 1 insertions, 20 deletions
@@ -246,7 +246,7 @@ impl<'a> DotString<'a> for CompassPoint { // TODO: probably dont need this struct and can move impl methods into lib module pub struct Dot<'a> { - graph: Graph<'a>, //config: Config, + graph: Graph<'a>, } impl<'a> Dot<'a> { @@ -339,25 +339,6 @@ impl<'a> Dot<'a> { } } -/// `Dot` configuration. -/// -/// This enum does not have an exhaustive definition (will be expanded) -#[derive(Debug, PartialEq, Eq)] -pub enum Config { - /// Use indices for node labels. - NodeIndexLabel, - /// Use indices for edge labels. - EdgeIndexLabel, - /// Use no edge labels. - EdgeNoLabel, - /// Use no node labels. - NodeNoLabel, - /// Do not print the graph/digraph string. - GraphContentOnly, - #[doc(hidden)] - _Incomplete(()), -} - #[derive(Hash, Eq, PartialEq, PartialOrd, Ord, Debug, Clone)] pub enum AttributeType { Graph, |