Enum chrono::format::InternalInternal
source · enum InternalInternal {
TimezoneOffsetPermissive,
Nanosecond3NoDot,
Nanosecond6NoDot,
Nanosecond9NoDot,
}
Variants§
TimezoneOffsetPermissive
Same as TimezoneOffsetColonZ
, but
allows missing minutes (per ISO 8601).
§Panics
If you try to use this for printing.
Nanosecond3NoDot
Same as Nanosecond
but the accuracy is fixed to 3 and there is no leading dot.
Nanosecond6NoDot
Same as Nanosecond
but the accuracy is fixed to 6 and there is no leading dot.
Nanosecond9NoDot
Same as Nanosecond
but the accuracy is fixed to 9 and there is no leading dot.
Trait Implementations§
source§impl Clone for InternalInternal
impl Clone for InternalInternal
source§fn clone(&self) -> InternalInternal
fn clone(&self) -> InternalInternal
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 InternalInternal
impl Debug for InternalInternal
source§impl Hash for InternalInternal
impl Hash for InternalInternal
source§impl PartialEq for InternalInternal
impl PartialEq for InternalInternal
source§fn eq(&self, other: &InternalInternal) -> bool
fn eq(&self, other: &InternalInternal) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for InternalInternal
impl StructuralPartialEq for InternalInternal
Auto Trait Implementations§
impl Freeze for InternalInternal
impl RefUnwindSafe for InternalInternal
impl Send for InternalInternal
impl Sync for InternalInternal
impl Unpin for InternalInternal
impl UnwindSafe for InternalInternal
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