1//! Row type produced by DataFrameBackend::collect (engine-agnostic).
23use serde_json::Value as JsonValue;
4use std::collections::HashMap;
56/// Rows as list of maps: column name -> JSON value. Used by bindings and collect.
7pub type CollectedRows = Vec<HashMap<String, JsonValue>>;