Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-arrow/src/io/mod.rs
6939 views
1
#[cfg(feature = "io_ipc")]
2
#[cfg_attr(docsrs, doc(cfg(feature = "io_ipc")))]
3
pub mod ipc;
4
5
#[cfg(feature = "io_avro")]
6
#[cfg_attr(docsrs, doc(cfg(feature = "io_avro")))]
7
pub mod avro;
8
9
pub mod iterator;
10
11