pub trait StaticEdgeKind: 'static {
    type Kind: UniformEdgeKind;
    type Edge: 'static + GraphItem + Bounded + EdgeImpl;
}

Required Associated Types

Implementations on Foreign Types

Implementors