//! Row type produced by DataFrameBackend::collect (engine-agnostic).
useserde_json::Value as JsonValue;usestd::collections::HashMap;/// Rows as list of maps: column name -> JSON value. Used by bindings and collect.
pubtypeCollectedRows=Vec<HashMap<String, JsonValue>>;