2022-09-30 07:54:30 -05:00
error[E0793]: reference to packed field is unaligned
--> $DIR/packed-struct-borrow-element-64bit.rs:13:15
2021-03-28 06:54:27 -05:00
|
LL | let brw = &foo.baz;
| ^^^^^^^^
|
2023-04-28 20:28:56 -05:00
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
2022-09-18 10:55:36 -05:00
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
2021-03-28 06:54:27 -05:00
2023-11-21 09:44:16 -06:00
error: aborting due to 1 previous error
2022-04-14 20:18:19 -05:00
2022-09-30 07:54:30 -05:00
For more information about this error, try `rustc --explain E0793`.