pub struct GraphmlGraph {
pub graph: Graph,
pub labels: Vec<String>,
}Expand description
Result of parsing a GraphML file.
Fields§
§graph: GraphThe parsed graph (with attributes populated).
labels: Vec<String>Node labels (the id attributes from the GraphML <node> elements),
in vertex-index order.
Auto Trait Implementations§
impl !Freeze for GraphmlGraph
impl !RefUnwindSafe for GraphmlGraph
impl Send for GraphmlGraph
impl !Sync for GraphmlGraph
impl Unpin for GraphmlGraph
impl UnsafeUnpin for GraphmlGraph
impl UnwindSafe for GraphmlGraph
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