Since I'd like to use Diesel with a SQLite database to store the data, I need a database schema that can do the following:
- insert and lookup type composition relation (i.e. TypeA ⊂ TypeB) – generics are a complication here
- store and query the method call graph – traits and specialization are the big problems for this
Since I'd like to use Diesel with a SQLite database to store the data, I need a database schema that can do the following: