pub enum ParsedTime {
DateTime(DateTime<Utc>),
DateOnly(NaiveDate),
}Variants§
Trait Implementations§
Source§impl Clone for ParsedTime
impl Clone for ParsedTime
Source§fn clone(&self) -> ParsedTime
fn clone(&self) -> ParsedTime
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 moreAuto Trait Implementations§
impl Freeze for ParsedTime
impl RefUnwindSafe for ParsedTime
impl Send for ParsedTime
impl Sync for ParsedTime
impl Unpin for ParsedTime
impl UnsafeUnpin for ParsedTime
impl UnwindSafe for ParsedTime
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