speedy
speedy copied to clipboard
speedy-derive: support derive for structs with const generics
The deriving Readable and Writable now works properly on structs with const generics.
#[derive(speedy::Readable, speedy::Writable)]
pub struct Foo<T, const N: usize> (
[T; N]
);