pub trait IntoRecord { // Required method fn into_record(self, id: RecordId) -> Record; }
Convert an external row type into a Record.
Record
Implement this in an adapter crate (e.g. zer-adapters) for foreign row types such as a Polars LazyFrame row or an Arrow RecordBatch row. The id parameter lets callers assign a stable RecordId.
zer-adapters
LazyFrame
RecordBatch
id
RecordId