Struct diesel::query_builder::LimitOffsetClause
source · pub struct LimitOffsetClause<Limit, Offset> {
pub limit_clause: Limit,
pub offset_clause: Offset,
}
Expand description
A helper query node that contains both limit and offset clauses
This type is only relevant for implementing custom backends
Fields§
§limit_clause: Limit
The limit clause
offset_clause: Offset
The offset clause
Trait Implementations§
source§impl<Limit: Clone, Offset: Clone> Clone for LimitOffsetClause<Limit, Offset>
impl<Limit: Clone, Offset: Clone> Clone for LimitOffsetClause<Limit, Offset>
source§fn clone(&self) -> LimitOffsetClause<Limit, Offset>
fn clone(&self) -> LimitOffsetClause<Limit, Offset>
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<'a, L, O> IntoBoxedClause<'a, Pg> for LimitOffsetClause<L, O>where
L: QueryFragment<Pg> + Send + 'a,
O: QueryFragment<Pg> + Send + 'a,
impl<'a, L, O> IntoBoxedClause<'a, Pg> for LimitOffsetClause<L, O>where L: QueryFragment<Pg> + Send + 'a, O: QueryFragment<Pg> + Send + 'a,
§type BoxedClause = BoxedLimitOffsetClause<'a, Pg>
type BoxedClause = BoxedLimitOffsetClause<'a, Pg>
Resulting type
source§fn into_boxed(self) -> Self::BoxedClause
fn into_boxed(self) -> Self::BoxedClause
Convert the given query node in it’s boxed representation
source§impl<Limit: QueryId, Offset: QueryId> QueryId for LimitOffsetClause<Limit, Offset>
impl<Limit: QueryId, Offset: QueryId> QueryId for LimitOffsetClause<Limit, Offset>
impl<Limit: Copy, Offset: Copy> Copy for LimitOffsetClause<Limit, Offset>
Auto Trait Implementations§
impl<Limit, Offset> RefUnwindSafe for LimitOffsetClause<Limit, Offset>where Limit: RefUnwindSafe, Offset: RefUnwindSafe,
impl<Limit, Offset> Send for LimitOffsetClause<Limit, Offset>where Limit: Send, Offset: Send,
impl<Limit, Offset> Sync for LimitOffsetClause<Limit, Offset>where Limit: Sync, Offset: Sync,
impl<Limit, Offset> Unpin for LimitOffsetClause<Limit, Offset>where Limit: Unpin, Offset: Unpin,
impl<Limit, Offset> UnwindSafe for LimitOffsetClause<Limit, Offset>where Limit: UnwindSafe, Offset: 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, NotSpecialized> + QueryId,
impl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere Conn: Connection<Backend = DB>, DB: Backend, T: QueryFragment<DB, NotSpecialized> + 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