pub struct DirectedNode<T: PartialEq + Hash + Copy + Ord + Debug + Display>(/* private fields */);
Expand description
A graph node. Contents contain the nodes mapped by edges from this node.
Implementations§
Trait Implementations§
Source§impl<T: PartialEq + PartialEq + Hash + Copy + Ord + Debug + Display> PartialEq for DirectedNode<T>
impl<T: PartialEq + PartialEq + Hash + Copy + Ord + Debug + Display> PartialEq for DirectedNode<T>
impl<T: Eq + PartialEq + Hash + Copy + Ord + Debug + Display> Eq for DirectedNode<T>
impl<T: PartialEq + Hash + Copy + Ord + Debug + Display> StructuralPartialEq for DirectedNode<T>
Auto Trait Implementations§
impl<T> Freeze for DirectedNode<T>
impl<T> RefUnwindSafe for DirectedNode<T>where
T: RefUnwindSafe,
impl<T> Send for DirectedNode<T>where
T: Send,
impl<T> Sync for DirectedNode<T>where
T: Sync,
impl<T> Unpin for DirectedNode<T>where
T: Unpin,
impl<T> UnwindSafe for DirectedNode<T>where
T: UnwindSafe,
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