pub enum DbView {
Current,
AsOf(u64),
Since(u64),
History,
}Expand description
Time-view selector for a database value (see docs/design/time-model.md).
Variants§
Current
Live facts as of the basis transaction.
AsOf(u64)
Facts as they stood at basis t (inclusive).
Since(u64)
Only live facts added after t (exclusive).
History
Every assertion and retraction ever recorded, except :db/noHistory attributes.
Trait Implementations§
impl Copy for DbView
impl Eq for DbView
impl StructuralPartialEq for DbView
Auto Trait Implementations§
impl Freeze for DbView
impl RefUnwindSafe for DbView
impl Send for DbView
impl Sync for DbView
impl Unpin for DbView
impl UnsafeUnpin for DbView
impl UnwindSafe for DbView
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