pub enum TimeRange {
TimeWindow {
start: u64,
end: u64,
},
Session(u32),
Sessions(Vec<u32>),
}Expand description
Time range for temporal queries.
Variants§
TimeWindow
All nodes created in this timestamp range.
Session(u32)
All nodes from this session.
Sessions(Vec<u32>)
All nodes from these sessions.
Auto Trait Implementations§
impl Freeze for TimeRange
impl RefUnwindSafe for TimeRange
impl Send for TimeRange
impl Sync for TimeRange
impl Unpin for TimeRange
impl UnsafeUnpin for TimeRange
impl UnwindSafe for TimeRange
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