JsValue
T
&T
&mut T
Option<T>
# #![allow(unused_variables)] #fn main() { use wasm_bindgen::prelude::*; #[wasm_bindgen] pub fn take_js_value_by_value(x: JsValue) {} #[wasm_bindgen] pub fn take_js_value_by_shared_ref(x: &JsValue) {} #[wasm_bindgen] pub fn return_js_value() -> JsValue { JsValue::NULL } #}
import { take_js_value_by_value, take_js_value_by_shared_ref, return_js_value, } from './guide_supported_types_examples'; take_js_value_by_value(42); take_js_value_by_shared_ref('hello'); let v = return_js_value();