Struct rs_graph::linkedlistgraph::Node[][src]

pub struct Node<ID = u32>(_)
where
    ID: PrimInt + Unsigned
;

Node of a linked list graph.

This is basically a newtype of the node index.

Trait Implementations

impl<ID: Clone> Clone for Node<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID: Copy> Copy for Node<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID: Debug> Debug for Node<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID> Display for Node<ID> where
    ID: PrimInt + Unsigned + Display
[src]

impl<ID: Eq> Eq for Node<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID: Hash> Hash for Node<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID> Indexable for Node<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID: PartialEq> PartialEq<Node<ID>> for Node<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID> StructuralEq for Node<ID> where
    ID: PrimInt + Unsigned
[src]

impl<ID> StructuralPartialEq for Node<ID> where
    ID: PrimInt + Unsigned
[src]

Auto Trait Implementations

impl<ID> RefUnwindSafe for Node<ID> where
    ID: RefUnwindSafe

impl<ID> Send for Node<ID> where
    ID: Send

impl<ID> Sync for Node<ID> where
    ID: Sync

impl<ID> Unpin for Node<ID> where
    ID: Unpin

impl<ID> UnwindSafe for Node<ID> where
    ID: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.