Trait polars_plan::logical_plan::AnonymousScan
source · pub trait AnonymousScan: Send + Sync {
fn scan(&self, scan_opts: AnonymousScanOptions) -> PolarsResult<DataFrame>;
fn schema(&self, _infer_schema_length: Option<usize>) -> PolarsResult<Schema> { ... }
fn allows_predicate_pushdown(&self) -> bool { ... }
fn allows_projection_pushdown(&self) -> bool { ... }
fn allows_slice_pushdown(&self) -> bool { ... }
}
Required Methods§
sourcefn scan(&self, scan_opts: AnonymousScanOptions) -> PolarsResult<DataFrame>
fn scan(&self, scan_opts: AnonymousScanOptions) -> PolarsResult<DataFrame>
Creates a dataframe from the supplied function & scan options.
Provided Methods§
sourcefn schema(&self, _infer_schema_length: Option<usize>) -> PolarsResult<Schema>
fn schema(&self, _infer_schema_length: Option<usize>) -> PolarsResult<Schema>
function to supply the schema. Allows for an optional infer schema argument for data sources with dynamic schemas
sourcefn allows_predicate_pushdown(&self) -> bool
fn allows_predicate_pushdown(&self) -> bool
specify if the scan provider should allow predicate pushdowns
Defaults to false
sourcefn allows_projection_pushdown(&self) -> bool
fn allows_projection_pushdown(&self) -> bool
specify if the scan provider should allow projection pushdowns
Defaults to false
sourcefn allows_slice_pushdown(&self) -> bool
fn allows_slice_pushdown(&self) -> bool
specify if the scan provider should allow slice pushdowns
Defaults to false