pub struct PetGraphWrapper {
pub graph: DiGraph<GraphNode, EdgeKind>,
pub node_id_to_index: HashMap<u64, NodeIndex>,
pub index_to_node_id: HashMap<NodeIndex, u64>,
}Fields§
§graph: DiGraph<GraphNode, EdgeKind>§node_id_to_index: HashMap<u64, NodeIndex>§index_to_node_id: HashMap<NodeIndex, u64>Auto Trait Implementations§
impl Freeze for PetGraphWrapper
impl RefUnwindSafe for PetGraphWrapper
impl Send for PetGraphWrapper
impl Sync for PetGraphWrapper
impl Unpin for PetGraphWrapper
impl UnsafeUnpin for PetGraphWrapper
impl UnwindSafe for PetGraphWrapper
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