[][src]Struct polars::frame::csv::CsvWriter

pub struct CsvWriter<W: Write> { /* fields omitted */ }

Implementations

impl<W> CsvWriter<W> where
    W: Write
[src]

pub fn new(writer: W) -> Self[src]

pub fn has_headers(self, has_headers: bool) -> Self[src]

Set whether to write headers

pub fn with_delimiter(self, delimiter: u8) -> Self[src]

Set the CSV file's column delimiter as a byte character

pub fn with_date_format(self, format: String) -> Self[src]

Set the CSV file's date format

pub fn with_time_format(self, format: String) -> Self[src]

Set the CSV file's time format

pub fn with_timestamp_format(self, format: String) -> Self[src]

Set the CSV file's timestamp format

pub fn finish(self, _df: &DataFrame)[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for CsvWriter<W> where
    W: RefUnwindSafe

impl<W> Send for CsvWriter<W> where
    W: Send

impl<W> Sync for CsvWriter<W> where
    W: Sync

impl<W> Unpin for CsvWriter<W> where
    W: Unpin

impl<W> UnwindSafe for CsvWriter<W> where
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,