pub struct Writer<W: Write> {
writer: Writer<W>,
has_headers: bool,
date_format: Option<String>,
datetime_format: Option<String>,
timestamp_format: Option<String>,
timestamp_tz_format: Option<String>,
time_format: Option<String>,
beginning: bool,
null_value: Option<String>,
}
Expand description
A CSV writer
Fields§
§writer: Writer<W>
The object to write to
has_headers: bool
Whether file should be written with headers, defaults to true
date_format: Option<String>
The date format for date arrays, defaults to RFC3339
datetime_format: Option<String>
The datetime format for datetime arrays, defaults to RFC3339
timestamp_format: Option<String>
The timestamp format for timestamp arrays, defaults to RFC3339
timestamp_tz_format: Option<String>
The timestamp format for timestamp (with timezone) arrays, defaults to RFC3339
time_format: Option<String>
The time format for time arrays, defaults to RFC3339
beginning: bool
Is the beginning-of-writer
null_value: Option<String>
The value to represent null entries, defaults to DEFAULT_NULL_VALUE
Implementations§
Source§impl<W: Write> Writer<W>
impl<W: Write> Writer<W>
Sourcepub fn new(writer: W) -> Self
pub fn new(writer: W) -> Self
Create a new CsvWriter from a writable object, with default options
Sourcepub fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
pub fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
Write a vector of record batches to a writable object
Sourcepub fn into_inner(self) -> W
pub fn into_inner(self) -> W
Unwraps this Writer<W>
, returning the underlying writer.
Trait Implementations§
Auto Trait Implementations§
impl<W> Freeze for Writer<W>where
W: Freeze,
impl<W> RefUnwindSafe for Writer<W>where
W: RefUnwindSafe,
impl<W> Send for Writer<W>where
W: Send,
impl<W> Sync for Writer<W>where
W: Sync,
impl<W> Unpin for Writer<W>where
W: Unpin,
impl<W> UnwindSafe for Writer<W>where
W: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more