pandrs 0.3.2

A high-performance DataFrame library for Rust, providing pandas-like API with advanced features including SIMD optimization, parallel processing, and distributed computing capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Column common types and utilities
//!
//! This module provides backward compatibility for column types.
//! All types have been moved to `crate::core::column` for better organization.

// Re-export core column types for backward compatibility
#[deprecated(since = "0.1.0", note = "Use crate::core::column types directly")]
pub use crate::core::column::*;

// Re-export core error types for backward compatibility
#[deprecated(since = "0.1.0", note = "Use crate::core::error types directly")]
pub use crate::core::error::{Error, Result};