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