pub struct DirectedNode<T: Clone + PartialEq + Hash + 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: Clone + Clone + PartialEq + Hash + Ord + Debug + Display> Clone for DirectedNode<T>
 
impl<T: Clone + Clone + PartialEq + Hash + Ord + Debug + Display> Clone for DirectedNode<T>
Source§fn clone(&self) -> DirectedNode<T>
 
fn clone(&self) -> DirectedNode<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl<T: PartialEq + Clone + PartialEq + Hash + Ord + Debug + Display> PartialEq for DirectedNode<T>
 
impl<T: PartialEq + Clone + PartialEq + Hash + Ord + Debug + Display> PartialEq for DirectedNode<T>
impl<T: Eq + Clone + PartialEq + Hash + Ord + Debug + Display> Eq for DirectedNode<T>
impl<T: Clone + PartialEq + Hash + 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