diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
commit | dc0db358abe19481e475e10c32149b53370f1a1c (patch) | |
tree | ab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/wasm-bindgen-macro/ui-tests/traits-not-implemented.stderr | |
parent | Releasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff) | |
download | rustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip |
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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) |