Add content hashing and equality glue to record layouts

This commit is contained in:
Dennis Kobert
2026-08-21 18:21:38 +00:00
parent 17ba74485a
commit ae6807f8e3
2 changed files with 251 additions and 2 deletions

View File

@@ -553,6 +553,8 @@ mod tests {
align: 8,
read_erased: <Opacity as AttributeMarker>::read_erased,
repark: None,
content_hash: None,
content_eq: None,
})
.collect();
Layout::default().with_writes(0, core_types::record::element_write::<f64>(), &writes)
@@ -568,6 +570,8 @@ mod tests {
align: 8,
read_erased: <Opacity as AttributeMarker>::read_erased,
repark: None,
content_hash: None,
content_eq: None,
})
.collect();
Layout::default().with_writes(1, core_types::record::element_write::<f64>(), &writes)