MCPcopy Create free account
hub / github.com/apache/arrow-rs / default

Method default

arrow-csv/src/writer.rs:395–413  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

393
394impl Default for WriterBuilder {
395 fn default() -> Self {
396 WriterBuilder {
397 delimiter: b',',
398 has_header: true,
399 quote: b'"',
400 escape: b'\\',
401 terminator: Terminator::Any(b'\n'),
402 double_quote: true,
403 date_format: None,
404 datetime_format: None,
405 timestamp_format: None,
406 timestamp_tz_format: None,
407 time_format: None,
408 null_value: None,
409 ignore_leading_whitespace: false,
410 ignore_trailing_whitespace: false,
411 quote_style: QuoteStyle::default(),
412 }
413 }
414}
415
416impl WriterBuilder {

Callers

nothing calls this directly

Calls 2

AnyClass · 0.85
defaultFunction · 0.85

Tested by

no test coverage detected