diff options
Diffstat (limited to 'vendor/wasm-bindgen-macro/ui-tests/traits-not-implemented.stderr')
-rw-r--r-- | vendor/wasm-bindgen-macro/ui-tests/traits-not-implemented.stderr | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/vendor/wasm-bindgen-macro/ui-tests/traits-not-implemented.stderr b/vendor/wasm-bindgen-macro/ui-tests/traits-not-implemented.stderr index aaad988af..5b8e12228 100644 --- a/vendor/wasm-bindgen-macro/ui-tests/traits-not-implemented.stderr +++ b/vendor/wasm-bindgen-macro/ui-tests/traits-not-implemented.stderr @@ -4,15 +4,14 @@ error[E0277]: the trait bound `A: IntoWasmAbi` is not satisfied 5 | #[wasm_bindgen] | ^^^^^^^^^^^^^^^ the trait `IntoWasmAbi` is not implemented for `A` | -note: required by a bound in `IntoWasmAbi` - --> $WORKSPACE/src/convert/traits.rs - | - | / pub trait IntoWasmAbi: WasmDescribe { - | | /// The wasm ABI type that this converts into when crossing the ABI - | | /// boundary. - | | type Abi: WasmAbi; -... | - | | fn into_abi(self) -> Self::Abi; - | | } - | |_^ required by this bound in `IntoWasmAbi` + = help: the following other types implement trait `IntoWasmAbi`: + &'a (dyn Fn() -> R + 'b) + &'a (dyn Fn(A) -> R + 'b) + &'a (dyn Fn(A, B) -> R + 'b) + &'a (dyn Fn(A, B, C) -> R + 'b) + &'a (dyn Fn(A, B, C, D) -> R + 'b) + &'a (dyn Fn(A, B, C, D, E) -> R + 'b) + &'a (dyn Fn(A, B, C, D, E, F) -> R + 'b) + &'a (dyn Fn(A, B, C, D, E, F, G) -> R + 'b) + and 84 others = note: this error originates in the attribute macro `wasm_bindgen` (in Nightly builds, run with -Z macro-backtrace for more info) |