tauri-plugin-persistence 0.2.0

A wrapper plugin for several persistence backends, focused on managing complex project folders with less boilerplate.
Documentation
1
2
3
4
5
6
7
8
9
mod error;
pub(crate) mod state;
mod context;

/// Exports a reference to various utility types.
pub mod types;

pub use error::{Error, Result};
pub use context::{Context, FileHandle, Database, Collection, Transaction};