• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0277]: the trait bound `NotZerocopy<AU16>: AsBytes` is not satisfied
2  --> tests/ui-nightly/transmute-ref-src-not-asbytes.rs:18:33
3   |
418 | const SRC_NOT_AS_BYTES: &AU16 = transmute_ref!(&NotZerocopy(AU16(0)));
5   |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6   |                                 |
7   |                                 the trait `AsBytes` is not implemented for `NotZerocopy<AU16>`
8   |                                 required by a bound introduced by this call
9   |
10   = help: the following other types implement trait `AsBytes`:
11             ()
12             AU16
13             F32<O>
14             F64<O>
15             I128<O>
16             I16<O>
17             I32<O>
18             I64<O>
19           and $N others
20note: required by a bound in `AssertIsAsBytes`
21  --> tests/ui-nightly/transmute-ref-src-not-asbytes.rs:18:33
22   |
2318 | const SRC_NOT_AS_BYTES: &AU16 = transmute_ref!(&NotZerocopy(AU16(0)));
24   |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `AssertIsAsBytes`
25   = note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
26
27error[E0277]: the trait bound `NotZerocopy<AU16>: AsBytes` is not satisfied
28  --> tests/ui-nightly/transmute-ref-src-not-asbytes.rs:18:33
29   |
3018 | const SRC_NOT_AS_BYTES: &AU16 = transmute_ref!(&NotZerocopy(AU16(0)));
31   |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `AsBytes` is not implemented for `NotZerocopy<AU16>`
32   |
33   = help: the following other types implement trait `AsBytes`:
34             ()
35             AU16
36             F32<O>
37             F64<O>
38             I128<O>
39             I16<O>
40             I32<O>
41             I64<O>
42           and $N others
43note: required by a bound in `AssertIsAsBytes`
44  --> tests/ui-nightly/transmute-ref-src-not-asbytes.rs:18:33
45   |
4618 | const SRC_NOT_AS_BYTES: &AU16 = transmute_ref!(&NotZerocopy(AU16(0)));
47   |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `AssertIsAsBytes`
48   = note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
49