[][src]Trait rs_graph::builder::Buildable

pub trait Buildable where
    Self: Sized
{ type Builder: Builder<Graph = Self>; }

A graph with a default builder.

Associated Types

type Builder: Builder<Graph = Self>

Loading content...

Implementors

impl<'a, G, Gx, Nx, Ex, Ax> Buildable for Attributed<G, Gx, Nx, Ex, Ax> where
    G: GraphSize<'a> + Buildable,
    Gx: 'a + Default,
    Nx: 'a + Default,
    Ex: 'a + Default,
    Ax: 'a + Default
[src]

type Builder = AttributedBuilder<G::Builder, Gx, Nx, Ex, Ax>

impl<ID> Buildable for LinkedListGraph<ID> where
    ID: PrimInt + Unsigned
[src]

type Builder = Self

Loading content...