pub struct DotGraph {
pub graph: Graph,
pub labels: Vec<String>,
}Expand description
Result of parsing a DOT file.
Fields§
§graph: GraphThe parsed graph.
labels: Vec<String>Node labels in vertex-index order. Numeric-only labels are preserved
as strings (e.g. "0", "1").
Auto Trait Implementations§
impl !Freeze for DotGraph
impl !RefUnwindSafe for DotGraph
impl Send for DotGraph
impl !Sync for DotGraph
impl Unpin for DotGraph
impl UnsafeUnpin for DotGraph
impl UnwindSafe for DotGraph
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more