Struct polars_io::parquet::ParquetWriter
source · [−]pub struct ParquetWriter<W> { /* private fields */ }
Expand description
Write a DataFrame to parquet format
Example
Implementations
sourceimpl<W> ParquetWriter<W> where
W: Write,
impl<W> ParquetWriter<W> where
W: Write,
sourcepub fn with_compression(self, compression: Compression) -> Self
pub fn with_compression(self, compression: Compression) -> Self
Set the compression used. Defaults to Snappy
.
pub fn with_statistics(self, statistics: bool) -> Self
Auto Trait Implementations
impl<W> RefUnwindSafe for ParquetWriter<W> where
W: RefUnwindSafe,
impl<W> Send for ParquetWriter<W> where
W: Send,
impl<W> Sync for ParquetWriter<W> where
W: Sync,
impl<W> Unpin for ParquetWriter<W> where
W: Unpin,
impl<W> UnwindSafe for ParquetWriter<W> where
W: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more