pandrs 0.3.0

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
13
14
15
use crate::core::error::{Error, Result};
use std::path::Path;

/// Disk-based storage for large datasets
pub struct DiskStorage {
    // This is a stub for now - will be implemented later
}

impl DiskStorage {
    /// Creates a new disk storage at the specified path
    pub fn new<P: AsRef<Path>>(path: P) -> Result<Self> {
        // Stub implementation
        Ok(Self {})
    }
}