pub trait BinaryLayout: RawLayout {
// Required methods
fn lhs(&self) -> &VertexId<Self::Index>;
fn rhs(&self) -> &VertexId<Self::Index>;
}
Expand description
A BinaryLayout
represents a specific type of edge that essentially defines the standard
edge layout of a normal graph, where each edge connects exactly two vertices.