pub struct GraphData {
pub graph: DiGraph<NodeInfo, ()>,
pub node_map: HashMap<String, NodeIndex>,
}Expand description
Legacy graph data - will be removed in future versions
Fields§
§graph: DiGraph<NodeInfo, ()>§node_map: HashMap<String, NodeIndex>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphData
impl RefUnwindSafe for GraphData
impl Send for GraphData
impl Sync for GraphData
impl Unpin for GraphData
impl UnwindSafe for GraphData
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