Skip to main content

Mountain/IPC/WindServiceHandlers/NativeHost/
ClipboardWriteBuffer.rs

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