Struct petgraph::dot::Dot [−][src]
pub struct Dot<'a, G> { /* fields omitted */ }
Expand description
Dot
implements output to graphviz .dot format for a graph.
Formatting and options are rather simple, this is mostly intended for debugging. Exact output may change.
Examples
use petgraph::Graph; use petgraph::dot::{Dot, Config}; let mut graph = Graph::<_, ()>::new(); graph.add_node("A"); graph.add_node("B"); graph.add_node("C"); graph.add_node("D"); graph.extend_with_edges(&[ (0, 1), (0, 2), (0, 3), (1, 2), (1, 3), (2, 3), ]); println!("{:?}", Dot::with_config(&graph, &[Config::EdgeNoLabel])); // In this case the output looks like this: // // digraph { // 0 [label="\"A\""] // 1 [label="\"B\""] // 2 [label="\"C\""] // 3 [label="\"D\""] // 0 -> 1 // 0 -> 2 // 0 -> 3 // 1 -> 2 // 1 -> 3 // 2 -> 3 // } // If you need multiple config options, just list them all in the slice.
Implementations
impl<'a, G> Dot<'a, G> where
G: GraphRef,
[src]
impl<'a, G> Dot<'a, G> where
G: GraphRef,
[src]Trait Implementations
impl<'a, G> Debug for Dot<'a, G> where
G: IntoEdgeReferences + IntoNodeReferences + NodeIndexable + GraphProp,
G::EdgeWeight: Debug,
G::NodeWeight: Debug,
[src]
impl<'a, G> Debug for Dot<'a, G> where
G: IntoEdgeReferences + IntoNodeReferences + NodeIndexable + GraphProp,
G::EdgeWeight: Debug,
G::NodeWeight: Debug,
[src]impl<'a, G> Display for Dot<'a, G> where
G: IntoEdgeReferences + IntoNodeReferences + NodeIndexable + GraphProp,
G::EdgeWeight: Display,
G::NodeWeight: Display,
[src]
impl<'a, G> Display for Dot<'a, G> where
G: IntoEdgeReferences + IntoNodeReferences + NodeIndexable + GraphProp,
G::EdgeWeight: Display,
G::NodeWeight: Display,
[src]Auto Trait Implementations
impl<'a, G> RefUnwindSafe for Dot<'a, G> where
G: RefUnwindSafe,
G: RefUnwindSafe,
impl<'a, G> Send for Dot<'a, G> where
G: Send,
G: Send,
impl<'a, G> Sync for Dot<'a, G> where
G: Sync,
G: Sync,
impl<'a, G> Unpin for Dot<'a, G> where
G: Unpin,
G: Unpin,
impl<'a, G> UnwindSafe for Dot<'a, G> where
G: UnwindSafe,
G: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more