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
implement Serialize for a x-long array. something like impl<T: Serialize, const L: usize> Serialize for [T; L] { .. } with that its possible to do:
Serialize
impl<T: Serialize, const L: usize> Serialize for [T; L] { .. }
#[derive(Serialize)] pub struct MyStruct<const R: usize> { pub rows: [PosSpan; R], }
The text was updated successfully, but these errors were encountered:
See https://github.com/est31/serde-big-array
Sorry, something went wrong.
If serde is used in bindgen, it is not easy to add serde-big-array to long array field.
Looks like a duplicate of #1937.
No branches or pull requests
implement
Serialize
for a x-long array.something like
impl<T: Serialize, const L: usize> Serialize for [T; L] { .. }
with that its possible to do:
The text was updated successfully, but these errors were encountered: