no_deref
The no_deref
attribute can be used to say that no Deref
impl should be generated for an imported type. If this attribute is not present, a Deref
impl will be generated with a Target
of the type's first extends
attribute, or Target = JsValue
if there are no extends
attributes.
# #![allow(unused_variables)] #fn main() { #[wasm_bindgen] extern "C" { type Foo; #[wasm_bindgen(method)] fn baz(this: &Foo) #[wasm_bindgen(extends = Foo, no_deref)] type Bar; } fn do_stuff(bar: &Bar) { bar.baz() // Does not compile } #}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4