Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceHandlers/NativeHost/
ClipboardTriggerPaste.rs

1//! Wire method: `nativeHost:triggerPaste`.
2//! Tauri 2.x has no direct paste API - returns false so callers fall
3//! through to the OS native paste shortcut.
4
5use serde_json::{Value, json};
6
7pub async fn Fn(_Arguments:Vec<Value>) -> Result<Value, String> { Ok(json!(false)) }