-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document that #[derive(IntoBytes)]
only supports unsized types which are repr(packed)
#1566
Comments
Further experiment: changing the struct from |
This is a limitation in See also: #1112 |
#[derive(IntoBytes)]
only supports unsized types which are repr(packed)
@joshlf, given the syntactic absence of |
Unfortunately I don't think that works for a few reasons:
Also, there are other cases we'd ideally like to support (like the one mentioned in this issue) where the type has a non-trivial alignment requirement (so |
Fixed by #1616 |
Update (authored by @joshlf)
See #1566 (comment).
This issue tracks improving the documentation on either
IntoBytes
or the re-export ofzerocopy_derive::IntoBytes
to document that#[derive(IntoBytes)]
does not support unsized types unless those types are alsorepr(packed)
.Original issue text
Original title: Can't #[derive(IntoBytes)] on a slice DST?
I'm experimenting with the current main branch (1ff83c4) and its support for slice DSTs. I wrote:
As far as I can tell from the docs, this should be supported in this branch?
But it errors out with:
The error message is annoyingly uncommunicative about what's going on, but the problem seems to be the
#[derive(IntoBytes)]
, wherecargo expand
shows that zerocopy is generating this code:which yeah, doesn't seem like that could work.
I figure this might be any of:
...But figured I'd check.
The text was updated successfully, but these errors were encountered: