Struct fast_graph::node::NodeID  
source · pub struct NodeID(/* private fields */);Expand description
A key to the node in the slotmap.
Implementations§
Trait Implementations§
source§impl Key for NodeID
 
impl Key for NodeID
source§fn null() -> Self
 
fn null() -> Self
Creates a new key that is always invalid and distinct from any non-null
key. A null key can only be created through this method (or default
initialization of keys made with 
new_key_type!, which calls this
method). Read moresource§impl Ord for NodeID
 
impl Ord for NodeID
source§impl PartialEq for NodeID
 
impl PartialEq for NodeID
source§impl PartialOrd for NodeID
 
impl PartialOrd for NodeID
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moreimpl Copy for NodeID
impl Eq for NodeID
impl StructuralPartialEq for NodeID
Auto Trait Implementations§
impl Freeze for NodeID
impl RefUnwindSafe for NodeID
impl Send for NodeID
impl Sync for NodeID
impl Unpin for NodeID
impl UnwindSafe for NodeID
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