DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Command/TreeView/
PersistTreeView.rs1use std::sync::Arc;
11
12use serde_json::{Value, json};
13use tauri::{AppHandle, State, Wry, command};
14
15use crate::{ApplicationState::State::ApplicationState::ApplicationState, dev_log};
16
17#[command]
18pub async fn PersistTreeView(
19 _ApplicationHandle:AppHandle<Wry>,
20
21 _State:State<'_, Arc<ApplicationState>>,
22
23 _ViewId:String,
24) -> Result<Value, String> {
25 dev_log!("commands", "warn: PersistTreeView not implemented");
26
27 Ok(json!({ "success": false, "error": "PersistTreeViewState method not implemented" }))
28}