We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using a tuple as a fixed length array (in my case for the purposes of storing a UUID in a 16-byte buffer) results in the following error:
error[E0277]: `(u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8)` doesn't implement `Debug` --> src/bindings.rs:69:39 | 69 | .field("key", &self.key) | ^^^^^^^^^ `(u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8)` cannot be formatted using `{:?}` because it doesn't implement `Debug` | = help: the trait `Debug` is not implemented for `(u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8)` = help: the following other types implement trait `Debug`: () (A, Z, Y, X, W, V, U, T) (B, A, Z, Y, X, W, V, U, T) (C, B, A, Z, Y, X, W, V, U, T) (D, C, B, A, Z, Y, X, W, V, U, T) (E, D, C, B, A, Z, Y, X, W, V, U, T) (T,) (U, T) and 5 others = note: required for the cast from `&(u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8, u8)` to `&dyn Debug
This could be fixed by implementing WebAssembly/component-model#384 and using list<u8,16> which could be stored in rust as [u8;16]
list<u8,16>
[u8;16]
The text was updated successfully, but these errors were encountered:
Thanks for your report. As a workaround until this is solved, can you define your uuid as a record instead of a tuple?
Sorry, something went wrong.
No branches or pull requests
When using a tuple as a fixed length array (in my case for the purposes of storing a UUID in a 16-byte buffer) results in the following error:
This could be fixed by implementing WebAssembly/component-model#384 and using
list<u8,16>
which could be stored in rust as[u8;16]
The text was updated successfully, but these errors were encountered: