pub trait Meta {
    type Idx: Idx;
    type Key: Key;
    type Data;
    type EdgeData;
}
Expand description

Meta graph trait, defines the base types of a graph such as key and data types

Required Associated Types

Implementors