• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0277]: the trait bound `Src: AsBytes` is not satisfied
2  --> tests/ui-stable/transmute-mut-src-not-asbytes.rs:24:36
3   |
424 | const SRC_NOT_AS_BYTES: &mut Dst = transmute_mut!(&mut Src);
5   |                                    ^^^^^^^^^^^^^^^^^^^^^^^^
6   |                                    |
7   |                                    the trait `AsBytes` is not implemented for `Src`
8   |                                    required by a bound introduced by this call
9   |
10   = help: the following other types implement trait `AsBytes`:
11             bool
12             char
13             isize
14             i8
15             i16
16             i32
17             i64
18             i128
19           and $N others
20note: required by a bound in `AssertSrcIsAsBytes`
21  --> tests/ui-stable/transmute-mut-src-not-asbytes.rs:24:36
22   |
2324 | const SRC_NOT_AS_BYTES: &mut Dst = transmute_mut!(&mut Src);
24   |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `AssertSrcIsAsBytes`
25   = note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
26
27error[E0277]: the trait bound `Src: AsBytes` is not satisfied
28  --> tests/ui-stable/transmute-mut-src-not-asbytes.rs:24:36
29   |
3024 | const SRC_NOT_AS_BYTES: &mut Dst = transmute_mut!(&mut Src);
31   |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `AsBytes` is not implemented for `Src`
32   |
33   = help: the following other types implement trait `AsBytes`:
34             bool
35             char
36             isize
37             i8
38             i16
39             i32
40             i64
41             i128
42           and $N others
43note: required by a bound in `AssertSrcIsAsBytes`
44  --> tests/ui-stable/transmute-mut-src-not-asbytes.rs:24:36
45   |
4624 | const SRC_NOT_AS_BYTES: &mut Dst = transmute_mut!(&mut Src);
47   |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `AssertSrcIsAsBytes`
48   = note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
49