pub enum TimeExpression {
Now,
Relative(RelativeTime),
Absolute(AbsoluteTime),
Day(DayReference),
Time(Time),
Date(StandardDate),
DayTime(DayTime),
}Variants§
Now
Relative(RelativeTime)
Absolute(AbsoluteTime)
Day(DayReference)
Time(Time)
Date(StandardDate)
DayTime(DayTime)
Trait Implementations§
Source§impl Clone for TimeExpression
impl Clone for TimeExpression
Source§fn clone(&self) -> TimeExpression
fn clone(&self) -> TimeExpression
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 TimeExpression
impl Debug for TimeExpression
Source§impl PartialEq for TimeExpression
impl PartialEq for TimeExpression
impl StructuralPartialEq for TimeExpression
Auto Trait Implementations§
impl Freeze for TimeExpression
impl RefUnwindSafe for TimeExpression
impl Send for TimeExpression
impl Sync for TimeExpression
impl Unpin for TimeExpression
impl UnwindSafe for TimeExpression
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