pub struct OffsetClause<Expr>(pub Expr);
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.Expand description
A query node representing an offset clause
This type is only relevant for implementing custom backends
Tuple Fields§
§0: Expr
Trait Implementations§
Source§impl<Expr: Clone> Clone for OffsetClause<Expr>
impl<Expr: Clone> Clone for OffsetClause<Expr>
Source§fn clone(&self) -> OffsetClause<Expr>
fn clone(&self) -> OffsetClause<Expr>
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<Expr: Debug> Debug for OffsetClause<Expr>
impl<Expr: Debug> Debug for OffsetClause<Expr>
Source§impl<Expr, DB> QueryFragment<DB> for OffsetClause<Expr>
impl<Expr, DB> QueryFragment<DB> for OffsetClause<Expr>
Source§fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, DB>) -> QueryResult<()>
fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, DB>) -> QueryResult<()>
Walk over this
QueryFragment
for all passes. Read moreSource§fn to_sql(&self, out: &mut DB::QueryBuilder, backend: &DB) -> QueryResult<()>
fn to_sql(&self, out: &mut DB::QueryBuilder, backend: &DB) -> QueryResult<()>
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.Converts this
QueryFragment
to its SQL representation. Read moreSource§fn collect_binds<'b>(
&'b self,
out: &mut DB::BindCollector<'b>,
metadata_lookup: &mut DB::MetadataLookup,
backend: &'b DB,
) -> QueryResult<()>
fn collect_binds<'b>( &'b self, out: &mut DB::BindCollector<'b>, metadata_lookup: &mut DB::MetadataLookup, backend: &'b DB, ) -> QueryResult<()>
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.Serializes all bind parameters in this query. Read more
Source§fn is_safe_to_cache_prepared(&self, backend: &DB) -> QueryResult<bool>
fn is_safe_to_cache_prepared(&self, backend: &DB) -> QueryResult<bool>
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.Is this query safe to store in the prepared statement cache? Read more
Source§impl<Expr: QueryId> QueryId for OffsetClause<Expr>
impl<Expr: QueryId> QueryId for OffsetClause<Expr>
impl<Expr: Copy> Copy for OffsetClause<Expr>
Auto Trait Implementations§
impl<Expr> Freeze for OffsetClause<Expr>where
Expr: Freeze,
impl<Expr> RefUnwindSafe for OffsetClause<Expr>where
Expr: RefUnwindSafe,
impl<Expr> Send for OffsetClause<Expr>where
Expr: Send,
impl<Expr> Sync for OffsetClause<Expr>where
Expr: Sync,
impl<Expr> Unpin for OffsetClause<Expr>where
Expr: Unpin,
impl<Expr> UnwindSafe for OffsetClause<Expr>where
Expr: UnwindSafe,
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