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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use wasm_bindgen::JsValue;

#[derive(Debug, Clone)]
pub struct Key {
    inner: JsValue,
}

impl Into<JsValue> for Key {
    #[inline]
    fn into(self) -> JsValue {
        self.inner
    }
}

impl AsRef<JsValue> for Key {
    #[inline]
    fn as_ref(&self) -> &JsValue {
        &self.inner
    }
}

pub trait AsKey {
    fn as_key(&self) -> Key;
}

impl AsKey for String {
    #[inline]
    fn as_key(&self) -> Key {
        Key {
            inner: JsValue::from_str(self),
        }
    }
}

impl AsKey for str {
    #[inline]
    fn as_key(&self) -> Key {
        Key {
            inner: JsValue::from_str(self),
        }
    }
}

impl<T: AsKey> AsKey for &T {
    #[inline]
    fn as_key(&self) -> Key {
        (*self).as_key()
    }
}

macro_rules! impl_as_key {
    ($($t:ty)*) => {
        $(
            impl AsKey for $t {
                #[inline]
                fn as_key(&self) -> Key {
                    Key { inner: JsValue::from(*self) }
                }
            }
        )*
    };
}

impl_as_key! {
    // numbers https://docs.rs/wasm-bindgen/0.2.78/src/wasm_bindgen/lib.rs.html#849
    i8 u8 i16 u16 i32 u32 f32 f64
    // big_numbers https://docs.rs/wasm-bindgen/0.2.78/src/wasm_bindgen/lib.rs.html#869
    i64 u64 i128 u128 isize usize
}