Struct rs_graph::vecgraph::VecGraphBuilder[][src]

pub struct VecGraphBuilder<ID> { /* fields omitted */ }

A builder for a VecGraph.

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> Builder for VecGraphBuilder<ID> where
    ID: PrimInt + Unsigned
[src]

type Graph = VecGraph<ID>

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> RefUnwindSafe for VecGraphBuilder<ID> where
    ID: RefUnwindSafe

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

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

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

impl<ID> UnwindSafe for VecGraphBuilder<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, 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.