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 for FormattedComponents
impl PartialEq 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 ==
.impl Copy for FormattedComponents
impl Eq for FormattedComponents
impl StructuralPartialEq for FormattedComponents
Auto Trait Implementations§
impl Freeze for FormattedComponents
impl RefUnwindSafe for FormattedComponents
impl Send for FormattedComponents
impl Sync for FormattedComponents
impl Unpin for FormattedComponents
impl UnwindSafe for FormattedComponents
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.