pub struct UnDirectedGraph<TNode, TEdge> { /* private fields */ }
Expand description
Graph
Implementations§
Source§impl<TNode, TEdge> UnDirectedGraph<TNode, TEdge>
impl<TNode, TEdge> UnDirectedGraph<TNode, TEdge>
pub fn new() -> UnDirectedGraph<TNode, TEdge>
Trait Implementations§
Auto Trait Implementations§
impl<TNode, TEdge> Freeze for UnDirectedGraph<TNode, TEdge>
impl<TNode, TEdge> RefUnwindSafe for UnDirectedGraph<TNode, TEdge>where
TEdge: RefUnwindSafe,
TNode: RefUnwindSafe,
impl<TNode, TEdge> Send for UnDirectedGraph<TNode, TEdge>
impl<TNode, TEdge> Sync for UnDirectedGraph<TNode, TEdge>
impl<TNode, TEdge> Unpin for UnDirectedGraph<TNode, TEdge>
impl<TNode, TEdge> UnwindSafe for UnDirectedGraph<TNode, TEdge>where
TEdge: RefUnwindSafe,
TNode: RefUnwindSafe,
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