Open geovex opened 1 year ago
If someone use something like
#[derive(PackedStruct)] #[packed_struct(endian = "lsb")] pub struct Record { data: [u8; 5000], csum: u16, }
Macro will explode with code for data_0, data_1..... data_5000. Compile times become inadequately big, and lsp will hang. Can we mitigate this somehow?
data_0, data_1..... data_5000
If someone use something like
Macro will explode with code for
data_0, data_1..... data_5000
. Compile times become inadequately big, and lsp will hang. Can we mitigate this somehow?