Skip to main content

Mountain/IPC/WindServiceHandlers/NativeHost/
ClipboardWriteBuffer.rs

1#![allow(unused_variables, dead_code, unused_imports)]
2
3//! Wire method: `nativeHost:writeClipboardBuffer`.
4//! Binary clipboard not yet implemented - no-op.
5
6use serde_json::Value;
7
8pub async fn Fn(_Arguments:Vec<Value>) -> Result<Value, String> { Ok(Value::Null) }