pub trait IntoLazy {
    fn lazy(self) -> LazyFrame;
}

Required Methods

Implementations on Foreign Types

Convert the DataFrame into a lazy DataFrame

Implementors