The Rust DLC crate provides a Manager struct which exposes a high-level abstraction for interacting with DLCs. It requires us to provide implementations of several traits, one of which is the Storage trait. Let's figure out the proper Tauri way for storing data and implement this trait. The Rust DLC crate provides an implementation of the trait that uses Sled which can be found here. Hopefully we can leverage this.
The Rust DLC crate provides a
Managerstruct which exposes a high-level abstraction for interacting with DLCs. It requires us to provide implementations of several traits, one of which is the Storage trait. Let's figure out the proper Tauri way for storing data and implement this trait. The Rust DLC crate provides an implementation of the trait that uses Sled which can be found here. Hopefully we can leverage this.