pub type PointId = u64;Expand description
Stable identifier for a point in the index.
Chosen as u64 rather than usize so that on-disk index serialization
is portable across 32-bit and 64-bit targets, and so the ID space is
large enough for write-heavy workloads where IDs are never reused.