Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-lazy/src/scan/mod.rs
6939 views
1
pub(super) mod anonymous_scan;
2
#[cfg(feature = "csv")]
3
pub(super) mod csv;
4
pub(super) mod file_list_reader;
5
#[cfg(feature = "ipc")]
6
pub(super) mod ipc;
7
#[cfg(feature = "json")]
8
pub(super) mod ndjson;
9
#[cfg(feature = "parquet")]
10
pub(super) mod parquet;
11
12
#[cfg(feature = "catalog")]
13
mod catalog;
14
15