mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-26 21:41:48 +02:00
Remove unused pub(crate)
This commit is contained in:
@@ -262,19 +262,19 @@ impl<R: Runtime> StoreBuilder<R> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) enum AutoSaveMessage {
|
enum AutoSaveMessage {
|
||||||
Reset,
|
Reset,
|
||||||
Cancel,
|
Cancel,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct StoreInner<R: Runtime> {
|
pub struct StoreInner<R: Runtime> {
|
||||||
pub(crate) app: AppHandle<R>,
|
app: AppHandle<R>,
|
||||||
pub(crate) path: PathBuf,
|
path: PathBuf,
|
||||||
pub(crate) cache: HashMap<String, JsonValue>,
|
cache: HashMap<String, JsonValue>,
|
||||||
pub(crate) defaults: Option<HashMap<String, JsonValue>>,
|
defaults: Option<HashMap<String, JsonValue>>,
|
||||||
pub(crate) serialize_fn: SerializeFn,
|
serialize_fn: SerializeFn,
|
||||||
pub(crate) deserialize_fn: DeserializeFn,
|
deserialize_fn: DeserializeFn,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<R: Runtime> StoreInner<R> {
|
impl<R: Runtime> StoreInner<R> {
|
||||||
|
|||||||
Reference in New Issue
Block a user