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
I know there is an awesome crate serde-big-array to work with big array. But I have a, maybe rare, case that I can not add the
serde-big-array
#[serde(with = "BigArray")]
to my structure's field which is generated by bindgen.
This can not be done with the current bidgen version. I just wonder if it is possible that the type [T; N] can be supported directly by serde.
[T; N]
serde
The text was updated successfully, but these errors were encountered:
Duplicate of #1937 and #2518, you commented on the latter: #2518 (comment).
You could post-process the bindgen output to include the #[serde(with = "BigArray")] or fix bindgen to be able to add it.
Sorry, something went wrong.
No branches or pull requests
I know there is an awesome crate
serde-big-array
to work with big array.But I have a, maybe rare, case that I can not add the
#[serde(with = "BigArray")]
to my structure's field which is generated by bindgen.
This can not be done with the current bidgen version. I just wonder if it is possible that the type
[T; N]
can be supported directly byserde
.The text was updated successfully, but these errors were encountered: