pub struct LimitOperator {
pub offset: Option<usize>,
pub limit: Option<usize>,
}Fields§
§offset: Option<usize>§limit: Option<usize>Implementations§
source§impl LimitOperator
impl LimitOperator
pub fn build( offset: Option<usize>, limit: Option<usize>, children: LogicalPlan ) -> LogicalPlan
Trait Implementations§
source§impl Clone for LimitOperator
impl Clone for LimitOperator
source§fn clone(&self) -> LimitOperator
fn clone(&self) -> LimitOperator
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for LimitOperator
impl Debug for LimitOperator
source§impl Hash for LimitOperator
impl Hash for LimitOperator
source§impl PartialEq for LimitOperator
impl PartialEq for LimitOperator
source§fn eq(&self, other: &LimitOperator) -> bool
fn eq(&self, other: &LimitOperator) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for LimitOperator
impl StructuralEq for LimitOperator
impl StructuralPartialEq for LimitOperator
Auto Trait Implementations§
impl RefUnwindSafe for LimitOperator
impl Send for LimitOperator
impl Sync for LimitOperator
impl Unpin for LimitOperator
impl UnwindSafe for LimitOperator
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.