pub enum SystemTimeRange {
OnlyMostRecent,
ExclusiveUpperBound(Range<SystemTime>),
InclusiveUpperBound(RangeInclusive<SystemTime>),
}Variants§
OnlyMostRecent
ExclusiveUpperBound(Range<SystemTime>)
InclusiveUpperBound(RangeInclusive<SystemTime>)
Trait Implementations§
Source§impl Clone for SystemTimeRange
impl Clone for SystemTimeRange
Source§fn clone(&self) -> SystemTimeRange
fn clone(&self) -> SystemTimeRange
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 SystemTimeRange
impl RefUnwindSafe for SystemTimeRange
impl Send for SystemTimeRange
impl Sync for SystemTimeRange
impl Unpin for SystemTimeRange
impl UnwindSafe for SystemTimeRange
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