pub enum NormalizedTemporal {
OffsetDateTime(NormalizedOffsetDateTime),
LocalDateTime(NormalizedLocalDateTime),
LocalDate(NormalizedDate),
LocalTime(NormalizedTime),
}Variants§
OffsetDateTime(NormalizedOffsetDateTime)
LocalDateTime(NormalizedLocalDateTime)
LocalDate(NormalizedDate)
LocalTime(NormalizedTime)
Trait Implementations§
Source§impl Clone for NormalizedTemporal
impl Clone for NormalizedTemporal
Source§fn clone(&self) -> NormalizedTemporal
fn clone(&self) -> NormalizedTemporal
Returns a duplicate 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 NormalizedTemporal
impl Debug for NormalizedTemporal
Source§impl PartialEq for NormalizedTemporal
impl PartialEq for NormalizedTemporal
impl Eq for NormalizedTemporal
impl StructuralPartialEq for NormalizedTemporal
Auto Trait Implementations§
impl Freeze for NormalizedTemporal
impl RefUnwindSafe for NormalizedTemporal
impl Send for NormalizedTemporal
impl Sync for NormalizedTemporal
impl Unpin for NormalizedTemporal
impl UnsafeUnpin for NormalizedTemporal
impl UnwindSafe for NormalizedTemporal
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