Rename RecordEdgeInput to RecordInput

This commit is contained in:
Dennis Kobert
2026-09-06 15:13:22 +00:00
parent d294d75198
commit a16a4c6354
3 changed files with 5 additions and 5 deletions

View File

@@ -171,13 +171,13 @@ where
/// its wiring-proven layout, the pairing the kernel's unsafe record
/// operations rely on. The kernel must only pair the layout with values this
/// edge produced.
pub struct RecordEdgeInput<'a, 'e, N> {
pub struct RecordInput<'a, 'e, N> {
node: &'a N,
layout: &'a Layout,
frames: &'a Frames<'e>,
}
impl<'a, 'e, N> RecordEdgeInput<'a, 'e, N> {
impl<'a, 'e, N> RecordInput<'a, 'e, N> {
pub fn new(node: &'a N, layout: &'a Layout, frames: &'a Frames<'e>) -> Self {
Self { node, layout, frames }
}

View File

@@ -23,7 +23,7 @@ mod testkit;
pub use access::{Rec, RecordValue, apply_plan, borrow_element, erase_static, read_at, read_element, token_only, write_element, write_element_sized, write_field};
pub use frames::{FrameArena, FrameScope, Frames};
pub use input::{DerivedLazyInput, DerivedRecordInput, ElementEdge, ElementLazyInput, LevelStatus, RecordEdgeInput, RecordExtract, RecordLazyInput, fill_frames, materialize_batch, materialize_level};
pub use input::{DerivedLazyInput, DerivedRecordInput, ElementEdge, ElementLazyInput, LevelStatus, RecordExtract, RecordInput, RecordLazyInput, fill_frames, materialize_batch, materialize_level};
pub use layout::{
ElToken, ElementSpec, ElementWrite, ElementWritePick, ElementWritePickHashed, ElementWritePickPlain, FieldDesc, FieldOffset, FieldWrite, InputReads, Layout, LayoutMeta, RecordLayout, copy_plan,
element_dims, element_parked, element_write, element_write_hashed, empty_layout,