We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As noted in #107 (comment) cread derive is also broken for fixed size arrays, and emits a scratch array of [u8; N] to write into.
[u8; N]
I would like to fix this, but this will require FromCtx: [T; N] which is kind of an awkard thing already.
FromCtx: [T; N]
I'd have to think back to what cread is trying to accomplish, iirc, it was motivated for non-std/core situations (cread == core read).
There may not be a good answer here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As noted in #107 (comment) cread derive is also broken for fixed size arrays, and emits a scratch array of
[u8; N]
to write into.I would like to fix this, but this will require
FromCtx: [T; N]
which is kind of an awkard thing already.I'd have to think back to what cread is trying to accomplish, iirc, it was motivated for non-std/core situations (cread == core read).
There may not be a good answer here.
The text was updated successfully, but these errors were encountered: