Struct deltalake::arrow::csv::writer::WriterBuilder

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

A CSV writer builder

Implementations§

source§

impl WriterBuilder

source

pub fn new() -> WriterBuilder

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().with_header(false);
    let writer = builder.build(file);

    writer
}
source

pub fn with_header(self, header: bool) -> WriterBuilder

Set whether to write the CSV file with a header

source

pub fn header(&self) -> bool

Returns true if this writer is configured to write a header

source

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

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

source

pub fn delimiter(&self) -> u8

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

source

pub fn with_quote(self, quote: u8) -> WriterBuilder

Set the CSV file’s quote character as a byte character

source

pub fn quote(&self) -> u8

Get the CSV file’s quote character as a byte character

source

pub fn with_escape(self, escape: u8) -> WriterBuilder

Set the CSV file’s escape character as a byte character

In some variants of CSV, quotes are escaped using a special escape character like \ (instead of escaping quotes by doubling them).

By default, writing these idiosyncratic escapes is disabled, and is only used when double_quote is disabled.

source

pub fn escape(&self) -> u8

Get the CSV file’s escape character as a byte character

source

pub fn with_double_quote(self, double_quote: bool) -> WriterBuilder

Set whether to enable double quote escapes

When enabled (which is the default), quotes are escaped by doubling them. e.g., " escapes to "".

When disabled, quotes are escaped with the escape character (which is \\ by default).

source

pub fn double_quote(&self) -> bool

Get whether double quote escapes are enabled

source

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

Set the CSV file’s date format

source

pub fn date_format(&self) -> Option<&str>

Get the CSV file’s date format if set, defaults to RFC3339

source

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

Set the CSV file’s datetime format

source

pub fn datetime_format(&self) -> Option<&str>

Get the CSV file’s datetime format if set, defaults to RFC3339

source

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

Set the CSV file’s time format

source

pub fn time_format(&self) -> Option<&str>

Get the CSV file’s datetime time if set, defaults to RFC3339

source

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

Set the CSV file’s timestamp format

source

pub fn timestamp_format(&self) -> Option<&str>

Get the CSV file’s timestamp format if set, defaults to RFC3339

source

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

Set the value to represent null in output

source

pub fn null(&self) -> &str

Get the value to represent null in output

source

pub fn with_rfc3339(self) -> WriterBuilder

👎Deprecated: Use WriterBuilder::default()

Use RFC3339 format for date/time/timestamps (default)

source

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

Create a new Writer

Trait Implementations§

source§

impl Clone for WriterBuilder

source§

fn clone(&self) -> WriterBuilder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WriterBuilder

source§

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

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

impl Default for WriterBuilder

source§

fn default() -> WriterBuilder

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

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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

source§

impl<T> Ungil for T
where T: Send,