pub trait UniformEdgeKind: EdgeKind {
    fn orientation() -> Orientation;

    fn is_directed() -> bool { ... }
    fn is_undirected() -> bool { ... }
}

Required Methods

Provided Methods

Implementors