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
sourceimpl Clone for FormattedComponents
impl Clone for FormattedComponents
sourcefn clone(&self) -> FormattedComponents
fn clone(&self) -> FormattedComponents
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FormattedComponents
impl Debug for FormattedComponents
impl Copy for FormattedComponents
impl Eq for FormattedComponents
impl StructuralEq for FormattedComponents
impl StructuralPartialEq for FormattedComponents
Auto Trait Implementations
impl RefUnwindSafe for FormattedComponents
impl Send for FormattedComponents
impl Sync for FormattedComponents
impl Unpin for FormattedComponents
impl UnwindSafe for FormattedComponents
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more