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