pub enum TimeRangeValue {
After(TimeAfterPeriod),
Before(TimeBeforePeriod),
Between(TimeBetweenPeriod),
}
Expand description
A time period value expressed as a range.
Variants§
Trait Implementations§
Source§impl Clone for TimeRangeValue
impl Clone for TimeRangeValue
Source§fn clone(&self) -> TimeRangeValue
fn clone(&self) -> TimeRangeValue
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 TimeRangeValue
impl Debug for TimeRangeValue
Source§impl<'de> Deserialize<'de> for TimeRangeValue
impl<'de> Deserialize<'de> for TimeRangeValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TimeRangeValue
impl PartialEq for TimeRangeValue
Source§impl Serialize for TimeRangeValue
impl Serialize for TimeRangeValue
impl Eq for TimeRangeValue
impl StructuralPartialEq for TimeRangeValue
Auto Trait Implementations§
impl Freeze for TimeRangeValue
impl RefUnwindSafe for TimeRangeValue
impl Send for TimeRangeValue
impl Sync for TimeRangeValue
impl Unpin for TimeRangeValue
impl UnwindSafe for TimeRangeValue
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