Add impl JsValue
and impl TryToJs
for HashMap<String, T>
#169
Labels
good first issue
Good for newcomers
impl JsValue
and impl TryToJs
for HashMap<String, T>
#169
We should be able to convert a Rust HashMap to and from arbitrary JS objects. We should have the following impls:
impl<'a, T: JsValue<'a>> JsValue<'a> for HashMap<String, T> {}
impl<T: TryIntoJs> TryIntoJs for HashMap<String, T> {}
The text was updated successfully, but these errors were encountered: