pub enum TemporalPredicate {
AsOf(Expression),
Between(Expression, Expression),
}Expand description
Temporal predicate for time-travel queries.
Variants§
AsOf(Expression)
AT TIME expr – find the version current at a specific point in time.
Between(Expression, Expression)
BETWEEN TIME expr AND expr – find all versions within a time range.
Trait Implementations§
Source§impl Clone for TemporalPredicate
impl Clone for TemporalPredicate
Source§fn clone(&self) -> TemporalPredicate
fn clone(&self) -> TemporalPredicate
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 TemporalPredicate
impl Debug for TemporalPredicate
Source§impl PartialEq for TemporalPredicate
impl PartialEq for TemporalPredicate
impl StructuralPartialEq for TemporalPredicate
Auto Trait Implementations§
impl Freeze for TemporalPredicate
impl RefUnwindSafe for TemporalPredicate
impl Send for TemporalPredicate
impl Sync for TemporalPredicate
impl Unpin for TemporalPredicate
impl UnsafeUnpin for TemporalPredicate
impl UnwindSafe for TemporalPredicate
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