• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0277]: the trait bound `Dst: FromBytes` is not satisfied
2  --> tests/ui-msrv/transmute-mut-dst-not-frombytes.rs:24:38
3   |
424 | const DST_NOT_FROM_BYTES: &mut Dst = transmute_mut!(&mut Src);
5   |                                      ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `FromBytes` is not implemented for `Dst`
6   |
7note: required by `AssertDstIsFromBytes`
8  --> tests/ui-msrv/transmute-mut-dst-not-frombytes.rs:24:38
9   |
1024 | const DST_NOT_FROM_BYTES: &mut Dst = transmute_mut!(&mut Src);
11   |                                      ^^^^^^^^^^^^^^^^^^^^^^^^
12   = note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
13