polars_lazy/scan/mod.rs
1pub(super) mod anonymous_scan;
2#[cfg(feature = "csv")]
3pub(super) mod csv;
4pub(super) mod file_list_reader;
5#[cfg(feature = "ipc")]
6pub(super) mod ipc;
7#[cfg(feature = "json")]
8pub(super) mod ndjson;
9#[cfg(feature = "parquet")]
10pub(super) mod parquet;
11
12#[cfg(feature = "catalog")]
13mod catalog;