tauri_store/collection/
marker.rs

1/// A marker trait used to enable plugin interoperability.
2pub trait CollectionMarker: Send + Sync + 'static {}
3
4/// Default collection marker.
5pub struct DefaultMarker;
6
7impl CollectionMarker for DefaultMarker {}