pub enum LimitSkip {
Exact(u64),
Param(String),
}Expand description
A LIMIT or SKIP value: either an exact count or a named query parameter.
$name parameters are resolved at execution time from the params map and
validated to be a non-negative integer.
Variants§
Trait Implementations§
impl StructuralPartialEq for LimitSkip
Auto Trait Implementations§
impl Freeze for LimitSkip
impl RefUnwindSafe for LimitSkip
impl Send for LimitSkip
impl Sync for LimitSkip
impl Unpin for LimitSkip
impl UnsafeUnpin for LimitSkip
impl UnwindSafe for LimitSkip
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