pub struct IpcWriter<W> { /* private fields */ }
Expand description
Write a DataFrame to Arrow’s IPC format
Example
use polars_core::prelude::*;
use polars_io::ipc::IpcWriter;
use std::fs::File;
use polars_io::SerWriter;
fn example(df: &mut DataFrame) -> Result<()> {
let mut file = File::create("file.ipc").expect("could not create file");
IpcWriter::new(&mut file)
.finish(df)
}
Implementations
sourceimpl<W> IpcWriter<W> where
W: Write,
impl<W> IpcWriter<W> where
W: Write,
sourcepub fn with_compression(self, compression: Option<Compression>) -> Self
pub fn with_compression(self, compression: Option<Compression>) -> Self
Set the compression used. Defaults to None.
Trait Implementations
Auto Trait Implementations
impl<W> RefUnwindSafe for IpcWriter<W> where
W: RefUnwindSafe,
impl<W> Send for IpcWriter<W> where
W: Send,
impl<W> Sync for IpcWriter<W> where
W: Sync,
impl<W> Unpin for IpcWriter<W> where
W: Unpin,
impl<W> UnwindSafe for IpcWriter<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