pub struct WriterBuilder { /* private fields */ }
Expand description

A CSV writer builder

Implementations§

source§

impl WriterBuilder

source

pub fn new() -> Self

Create a new builder for configuring CSV writing options.

To convert a builder into a writer, call WriterBuilder::build

Example

fn example() -> Writer<File> {
    let file = File::create("target/out.csv").unwrap();

    // create a builder that doesn't write headers
    let builder = WriterBuilder::new().has_headers(false);
    let writer = builder.build(file);

    writer
}
source

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

Set whether to write headers

source

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

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

source

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

Set the CSV file’s date format

source

pub fn with_datetime_format(self, format: String) -> Self

Set the CSV file’s datetime format

source

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

Set the CSV file’s time format

source

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

Set the CSV file’s timestamp format

source

pub fn with_null(self, null_value: String) -> Self

Set the value to represent null in output

source

pub fn build<W: Write>(self, writer: W) -> Writer<W>

Create a new Writer

Trait Implementations§

source§

impl Debug for WriterBuilder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for WriterBuilder

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Allocation for Twhere
    T: RefUnwindSafe + Send + Sync,