You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clippy now warns about this:
error: item uses `packed` representation without ABI-qualification
Quote from clippy:
> repr(packed) by default implies repr(Rust, packed). However, this
> representation is not stable, which makes it less useful: the bulk of
> repr(packed) use cases are for interfacing with certain binary formats
> (where it needs to be repr(C, packed)) and for zero-copy deserialization
> (which needs to be stable). The best use case for repr(Rust, packed) is
> for reducing binary size
Signed-off-by: Daniel Schaefer <[email protected]>
0 commit comments