[][src]Struct rs_graph::linkedlistgraph::LinkedListGraphBuilder

pub struct LinkedListGraphBuilder<ID, N, E> { /* fields omitted */ }

A builder for a LinkedListGraph.

The basic task is to arrange the final outgoing and incoming edges in the linked lists appropriately (i.e. first outgoing, then incoming edges).

Trait Implementations

impl<ID, N, E> Builder for LinkedListGraphBuilder<ID, N, E> where
    ID: PrimInt + Unsigned,
    N: Default,
    E: Default
[src]

type Graph = LinkedListGraph<ID, N, E>

The graph type produced by this builder.

type Node = Node<ID>

The type of a nodes.

type Edge = Edge<ID>

The type of an edge.

Auto Trait Implementations

impl<ID, N, E> RefUnwindSafe for LinkedListGraphBuilder<ID, N, E> where
    E: RefUnwindSafe,
    ID: RefUnwindSafe,
    N: RefUnwindSafe

impl<ID, N, E> Send for LinkedListGraphBuilder<ID, N, E> where
    E: Send,
    ID: Send,
    N: Send

impl<ID, N, E> Sync for LinkedListGraphBuilder<ID, N, E> where
    E: Sync,
    ID: Sync,
    N: Sync

impl<ID, N, E> Unpin for LinkedListGraphBuilder<ID, N, E> where
    E: Unpin,
    ID: Unpin,
    N: Unpin

impl<ID, N, E> UnwindSafe for LinkedListGraphBuilder<ID, N, E> where
    E: UnwindSafe,
    ID: UnwindSafe,
    N: 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.