pub enum Limit {
Skip(u64),
Top(u64),
}Expand description
Result set limit specification.
EventQL supports two types of limits:
TOP n- Take the first n resultsSKIP n- Skip the first n results
§Examples
TOP 10limits to first 10 resultsSKIP 20skips first 20 results
Variants§
Trait Implementations§
impl Copy for Limit
impl Eq for Limit
impl StructuralPartialEq for Limit
Auto Trait Implementations§
impl Freeze for Limit
impl RefUnwindSafe for Limit
impl Send for Limit
impl Sync for Limit
impl Unpin for Limit
impl UnwindSafe for Limit
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