1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use crate::list::ListIndex;
use js_sys::Object;
use wasm_bindgen::prelude::*;
use wasm_bindgen::JsCast;
#[derive(Debug)]
pub struct ActionDetail {
#[allow(dead_code)]
index: ListIndex,
}
impl From<JsValue> for ActionDetail {
fn from(value: JsValue) -> Self {
let detail = value.unchecked_into::<ActionDetailJs>();
let index = ListIndex::from(detail.index());
Self { index }
}
}
#[wasm_bindgen]
extern "C" {
#[derive(Debug)]
#[wasm_bindgen(extends = Object)]
type ActionDetailJs;
#[wasm_bindgen(method, getter)]
pub fn index(this: &ActionDetailJs) -> JsValue;
}