pub struct FormatOptions<'a> { /* private fields */ }
Expand description
Options for formatting arrays
By default nulls are formatted as ""
and temporal types formatted
according to RFC3339
Implementations§
Source§impl<'a> FormatOptions<'a>
impl<'a> FormatOptions<'a>
Sourcepub const fn with_display_error(self, safe: bool) -> Self
pub const fn with_display_error(self, safe: bool) -> Self
If set to true
any formatting errors will be written to the output
instead of being converted into a std::fmt::Error
Sourcepub const fn with_null(self, null: &'a str) -> Self
pub const fn with_null(self, null: &'a str) -> Self
Overrides the string used to represent a null
Defaults to ""
Sourcepub const fn with_date_format(self, date_format: Option<&'a str>) -> Self
pub const fn with_date_format(self, date_format: Option<&'a str>) -> Self
Overrides the format used for DataType::Date32
columns
Sourcepub const fn with_datetime_format(
self,
datetime_format: Option<&'a str>,
) -> Self
pub const fn with_datetime_format( self, datetime_format: Option<&'a str>, ) -> Self
Overrides the format used for DataType::Date64
columns
Sourcepub const fn with_timestamp_format(
self,
timestamp_format: Option<&'a str>,
) -> Self
pub const fn with_timestamp_format( self, timestamp_format: Option<&'a str>, ) -> Self
Overrides the format used for DataType::Timestamp
columns without a timezone
Sourcepub const fn with_timestamp_tz_format(
self,
timestamp_tz_format: Option<&'a str>,
) -> Self
pub const fn with_timestamp_tz_format( self, timestamp_tz_format: Option<&'a str>, ) -> Self
Overrides the format used for DataType::Timestamp
columns with a timezone
Sourcepub const fn with_time_format(self, time_format: Option<&'a str>) -> Self
pub const fn with_time_format(self, time_format: Option<&'a str>) -> Self
Overrides the format used for DataType::Time32
and DataType::Time64
columns
Sourcepub const fn with_duration_format(self, duration_format: DurationFormat) -> Self
pub const fn with_duration_format(self, duration_format: DurationFormat) -> Self
Overrides the format used for duration columns
Defaults to DurationFormat::ISO8601
Trait Implementations§
Source§impl<'a> Clone for FormatOptions<'a>
impl<'a> Clone for FormatOptions<'a>
Source§fn clone(&self) -> FormatOptions<'a>
fn clone(&self) -> FormatOptions<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for FormatOptions<'a>
impl<'a> Debug for FormatOptions<'a>
Source§impl Default for FormatOptions<'_>
impl Default for FormatOptions<'_>
Source§impl<'a> Hash for FormatOptions<'a>
impl<'a> Hash for FormatOptions<'a>
Source§impl<'a> PartialEq for FormatOptions<'a>
impl<'a> PartialEq for FormatOptions<'a>
impl<'a> Eq for FormatOptions<'a>
impl<'a> StructuralPartialEq for FormatOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for FormatOptions<'a>
impl<'a> RefUnwindSafe for FormatOptions<'a>
impl<'a> Send for FormatOptions<'a>
impl<'a> Sync for FormatOptions<'a>
impl<'a> Unpin for FormatOptions<'a>
impl<'a> UnwindSafe for FormatOptions<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more