使用wasm_bindgen
with serde
,我正在尝试JsValue
使用惯用的 rust 返回一个复杂结构。我创建了一个孤立的示例来说明我看到的错误。
结构声明:
#[derive(Serialize)]
pub struct BookStoreData {
pub h: HashMap<String, String>,
pub name: String,
}
函数定义:
#[wasm_bindgen]
pub fn hello_hash(count: i32) -> Result<JsValue, JsValue> {
set_panic_hook();
let mut book_reviews = HashMap::new();
book_reviews.insert(
"Grimms' Fairy Tales".to_string(),
"Masterpiece.".to_string(),
);
let data = BookStoreData {
h: book_reviews,
name: "My Book Store".to_string(),
};
let js_result: JsValue = JsValue::from_serde(&data).unwrap();
OK(js_result)
}
我得到这个编译错误:
error[E0425]: cannot find function `OK` in this scope
--> src/hello_whatever.rs:46:5
|
46 | OK(js_result)
| ^^ help: a tuple variant with a similar name exists: `Ok`
您可以查看基于rust-parcel-template的完整示例
要重现错误,请从 repo 的根目录运行npm run start
或cd crate && cargo build