Struct partiql_ast::ast::LimitOffsetClause
source · pub struct LimitOffsetClause {
pub limit: Option<Box<Expr>>,
pub offset: Option<Box<Expr>>,
}
Fields§
§limit: Option<Box<Expr>>
§offset: Option<Box<Expr>>
Trait Implementations§
source§impl Clone for LimitOffsetClause
impl Clone for LimitOffsetClause
source§fn clone(&self) -> LimitOffsetClause
fn clone(&self) -> LimitOffsetClause
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 LimitOffsetClause
impl Debug for LimitOffsetClause
source§impl PartialEq<LimitOffsetClause> for LimitOffsetClause
impl PartialEq<LimitOffsetClause> for LimitOffsetClause
source§fn eq(&self, other: &LimitOffsetClause) -> bool
fn eq(&self, other: &LimitOffsetClause) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Visit for LimitOffsetClause
impl Visit for LimitOffsetClause
impl StructuralPartialEq for LimitOffsetClause
Auto Trait Implementations§
impl RefUnwindSafe for LimitOffsetClause
impl Send for LimitOffsetClause
impl Sync for LimitOffsetClause
impl Unpin for LimitOffsetClause
impl UnwindSafe for LimitOffsetClause
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