robin-sparkless-core 4.2.0

Shared types, config, and error for robin-sparkless (no Polars).
Documentation
1
2
3
4
5
6
7
//! Row type produced by DataFrameBackend::collect (engine-agnostic).

use serde_json::Value as JsonValue;
use std::collections::HashMap;

/// Rows as list of maps: column name -> JSON value. Used by bindings and collect.
pub type CollectedRows = Vec<HashMap<String, JsonValue>>;