Even though Rust API is supposed to be the native one for DDlog, it is currently difficult to use, as it requires navigating multiple static and generated source files, managing two layers of wrappers around each value (x -> Value::XXX(x) -> DDValue), plus it lacks documentation.
TODOs:
- Generate convenience wrappers similar to ones we generate for the FlatBufs-based Java API (with insert/delete methods that take
x: T instead of DDValue<Value<T>>).
- Documentation
- Examples
Even though Rust API is supposed to be the native one for DDlog, it is currently difficult to use, as it requires navigating multiple static and generated source files, managing two layers of wrappers around each value (
x->Value::XXX(x)->DDValue), plus it lacks documentation.TODOs:
x: Tinstead ofDDValue<Value<T>>).