type Vertex struct {
// Edges in order of appearance (for deterministic order after sort). OutgoingEdges []V// Edges in the inverse of outgoing, i.e. vertices that depend on this vertex IncomingEdges []V Data D}
Vertex is a resource representation in a dependency graph.