pub enum FormattedComponents {
None,
Date,
Time,
Offset,
DateTime,
DateTimeOffset,
TimeOffset,
}
Expand description
Which components to format.
Variants§
None
The configuration can only be used for parsing. Using this to format a value is unspecified behavior.
Date
Format only the date.
Time
Format only the time.
Offset
Format only the UTC offset.
DateTime
Format the date and time.
DateTimeOffset
Format the date, time, and UTC offset.
TimeOffset
Format the time and UTC offset.
Trait Implementations§
source§impl Clone for FormattedComponents
impl Clone for FormattedComponents
source§fn clone(&self) -> FormattedComponents
fn clone(&self) -> FormattedComponents
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 Debug for FormattedComponents
impl Debug for FormattedComponents
source§impl PartialEq<FormattedComponents> for FormattedComponents
impl PartialEq<FormattedComponents> for FormattedComponents
source§fn eq(&self, other: &FormattedComponents) -> bool
fn eq(&self, other: &FormattedComponents) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.