[][src]Struct dynamic_graph::NamedNode

#[repr(C)]
pub struct NamedNode<N, E> { /* fields omitted */ }

A node type which uses node pointers as keys in the edge collection.

Trait Implementations

impl<N: Eq, E: Eq> Eq for NamedNode<N, E>[src]

impl<N, E> GraphNode for NamedNode<N, E>[src]

type Node = N

type Edge = E

impl<N: PartialEq, E: PartialEq> PartialEq<NamedNode<N, E>> for NamedNode<N, E>[src]

impl<N, E> StructuralEq for NamedNode<N, E>[src]

impl<N, E> StructuralPartialEq for NamedNode<N, E>[src]

Auto Trait Implementations

impl<N, E> RefUnwindSafe for NamedNode<N, E> where
    E: RefUnwindSafe,
    N: RefUnwindSafe

impl<N, E> !Send for NamedNode<N, E>

impl<N, E> !Sync for NamedNode<N, E>

impl<N, E> Unpin for NamedNode<N, E> where
    E: Unpin,
    N: Unpin

impl<N, E> UnwindSafe for NamedNode<N, E> where
    E: RefUnwindSafe + UnwindSafe,
    N: RefUnwindSafe + 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, 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.