Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-io/src/ipc/mod.rs
6939 views
1
#[cfg(feature = "ipc")]
2
mod ipc_file;
3
#[cfg(feature = "cloud")]
4
mod ipc_reader_async;
5
#[cfg(feature = "ipc_streaming")]
6
mod ipc_stream;
7
#[cfg(feature = "ipc")]
8
mod mmap;
9
mod write;
10
#[cfg(feature = "ipc")]
11
pub use ipc_file::{IpcReader, IpcScanOptions};
12
#[cfg(feature = "cloud")]
13
pub use ipc_reader_async::*;
14
#[cfg(feature = "ipc_streaming")]
15
pub use ipc_stream::*;
16
pub use write::{BatchedWriter, IpcCompression, IpcWriter, IpcWriterOptions};
17
18