From 96934cd89f51f2ba99e24e44a3abdf2518a0f1e4 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Fri, 4 Jul 2025 00:45:45 +0100 Subject: [PATCH] update DataFrame module exports --- src/dataframe/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dataframe/mod.rs b/src/dataframe/mod.rs index 3dd102e..c477580 100644 --- a/src/dataframe/mod.rs +++ b/src/dataframe/mod.rs @@ -1,4 +1,4 @@ //! This module provides the DataFrame structure for handling tabular data with mixed types. pub mod df; -pub use df::{DataFrame, DataFrameColumn, TypedFrame}; +pub use df::{DataFrame, SubFrame};