tauri-store 1.2.2

Persistent stores for Tauri
Documentation
1
2
3
4
5
6
7
/// A marker trait used to enable plugin interoperability.
pub trait CollectionMarker: Send + Sync + 'static {}

/// Default collection marker.
pub struct DefaultMarker;

impl CollectionMarker for DefaultMarker {}