• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0277]: the trait bound `NotZerocopy: zerocopy::FromBytes` is not satisfied
2  --> tests/ui-nightly/transmute-dst-not-frombytes.rs:19:41
3   |
419 | const DST_NOT_FROM_BYTES: NotZerocopy = transmute!(AU16(0));
5   |                                         ^^^^^^^^^^^^^^^^^^^
6   |                                         |
7   |                                         the trait `zerocopy::FromBytes` is not implemented for `NotZerocopy`
8   |                                         required by a bound introduced by this call
9   |
10   = note: Consider adding `#[derive(FromBytes)]` to `NotZerocopy`
11   = help: the following other types implement trait `zerocopy::FromBytes`:
12             ()
13             AU16
14             AtomicI16
15             AtomicI32
16             AtomicI64
17             AtomicI8
18             AtomicIsize
19             AtomicU16
20           and $N others
21note: required by a bound in `AssertIsFromBytes`
22  --> tests/ui-nightly/transmute-dst-not-frombytes.rs:19:41
23   |
2419 | const DST_NOT_FROM_BYTES: NotZerocopy = transmute!(AU16(0));
25   |                                         ^^^^^^^^^^^^^^^^^^^ required by this bound in `AssertIsFromBytes`
26   = note: this error originates in the macro `transmute` (in Nightly builds, run with -Z macro-backtrace for more info)
27