polars-io 0.54.4

IO related logic for the Polars DataFrame library
Documentation
1
2
3
4
5
6
7
8
9
10
use polars_utils::IdxSize;

pub static POLARS_IPC_METADATA_KEY: &str = "__POLARS_IPC_METADATA";

#[derive(Debug, Clone, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct PlIpcMetadata {
    /// Cumulative length including the current record batch.
    pub record_batch_cum_len: Vec<IdxSize>,
}