Question:
I am writing an extern lib for Polars in Rust (for consumption by Raku::Dan) and would like to get out an opaque container for a LazyFrame object by calling df.lazy().Answer:
Dataframe::lazy
is feature flagged behind the lazy
featuretry changing your cargo.toml from
polars = "0.22.1"
to
polars = {version = "0.22.1", features = ["lazy"]}
If you have better answer, please add a comment about this, thank you!