pub struct LimitNode {
pub input: Box<PlanNode>,
pub limit: Option<u64>,
pub offset: Option<u64>,
}Expand description
Limit operation.
Fields§
§input: Box<PlanNode>§limit: Option<u64>§offset: Option<u64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LimitNode
impl RefUnwindSafe for LimitNode
impl Send for LimitNode
impl Sync for LimitNode
impl Unpin for LimitNode
impl UnsafeUnpin for LimitNode
impl UnwindSafe for LimitNode
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