pub trait GraphBase {
    type EdgeId: Copy + PartialEq;
    type NodeId: Copy + PartialEq;
}Expand description
Base graph trait: defines the associated node identifier and edge identifier types.
pub trait GraphBase {
    type EdgeId: Copy + PartialEq;
    type NodeId: Copy + PartialEq;
}Base graph trait: defines the associated node identifier and edge identifier types.