Finished-ish writing the new JIT-friendly, packed Form, this time with extra repr(C) Vec implementation

This commit is contained in:
2024-01-28 21:51:01 -05:00
parent a16e126aa1
commit 0696ad5594
2 changed files with 273 additions and 36 deletions

View File

@@ -16,6 +16,7 @@ use anyhow::{anyhow,bail,Result};
// rustonomicon
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Clone, Copy)]
#[repr(transparent)]
pub struct ID {
id: i64
}