pub struct SkipOp {
pub count: usize,
pub input: Box<LogicalOperator>,
}Expand description
Skip a number of results.
Fields§
§count: usizeNumber of rows to skip.
input: Box<LogicalOperator>Input operator.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SkipOp
impl RefUnwindSafe for SkipOp
impl Send for SkipOp
impl Sync for SkipOp
impl Unpin for SkipOp
impl UnwindSafe for SkipOp
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