Struct diesel::query_builder::LimitClause
source · pub struct LimitClause<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 a limit clause
This type is only relevant for implementing custom backends
Tuple Fields§
§0: Expr
Trait Implementations§
source§impl<Expr: Clone> Clone for LimitClause<Expr>
impl<Expr: Clone> Clone for LimitClause<Expr>
source§fn clone(&self) -> LimitClause<Expr>
fn clone(&self) -> LimitClause<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 LimitClause<Expr>
impl<Expr: Debug> Debug for LimitClause<Expr>
source§impl<Expr, DB> QueryFragment<DB> for LimitClause<Expr>where
DB: Backend + DieselReserveSpecialization,
Expr: QueryFragment<DB>,
impl<Expr, DB> QueryFragment<DB> for LimitClause<Expr>where DB: Backend + DieselReserveSpecialization, Expr: QueryFragment<DB>,
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 LimitClause<Expr>
impl<Expr: QueryId> QueryId for LimitClause<Expr>
impl<Expr: Copy> Copy for LimitClause<Expr>
Auto Trait Implementations§
impl<Expr> RefUnwindSafe for LimitClause<Expr>where Expr: RefUnwindSafe,
impl<Expr> Send for LimitClause<Expr>where Expr: Send,
impl<Expr> Sync for LimitClause<Expr>where Expr: Sync,
impl<Expr> Unpin for LimitClause<Expr>where Expr: Unpin,
impl<Expr> UnwindSafe for LimitClause<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
source§impl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere
Conn: Connection<Backend = DB>,
DB: Backend,
T: QueryFragment<DB> + QueryId,
impl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere Conn: Connection<Backend = DB>, DB: Backend, T: QueryFragment<DB> + QueryId,
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> AsExprOf<Self, T>where
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
fn into_sql<T>(self) -> AsExprOf<Self, T>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,
Convert
self
to an expression for Diesel’s query builder. Read moresource§fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where
&'a Self: AsExpression<T>,
T: SqlType + TypedExpressionType,
fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,
Convert
&self
to an expression for Diesel’s query builder. Read more