Struct polars_io::csv::write::SerializeOptions [−][src]
pub struct SerializeOptions {
pub date32_format: String,
pub date64_format: String,
pub time32_format: String,
pub time64_format: String,
pub timestamp_format: String,
}
This is supported on crate features
csv-file
and io_csv_write
only.Expand description
Options to serialize logical types to CSV
Fields
date32_format: String
used for DataType::Date32
date64_format: String
used for DataType::Date64
time32_format: String
used for DataType::Time32
time64_format: String
used for DataType::Time64
timestamp_format: String
used for DataType::Timestamp
Trait Implementations
Returns the “default value” for a type. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SerializeOptions
impl Send for SerializeOptions
impl Sync for SerializeOptions
impl Unpin for SerializeOptions
impl UnwindSafe for SerializeOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.