Struct diesel::query_builder::LimitOffsetClause
source · pub struct LimitOffsetClause<Limit, Offset> {
pub limit_clause: Limit,
pub offset_clause: Offset,
}
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.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> IntoBoxedClause<'a, Mysql> for LimitOffsetClause<LimitClause<L>, NoOffsetClause>where
L: QueryFragment<Mysql> + Send + 'a,
Available on crate feature mysql_backend
only.
impl<'a, L> IntoBoxedClause<'a, Mysql> for LimitOffsetClause<LimitClause<L>, NoOffsetClause>where L: QueryFragment<Mysql> + Send + 'a,
Available on crate feature
mysql_backend
only.§type BoxedClause = BoxedLimitOffsetClause<'a, Mysql>
type BoxedClause = BoxedLimitOffsetClause<'a, Mysql>
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<'a, L, O> IntoBoxedClause<'a, Mysql> for LimitOffsetClause<LimitClause<L>, OffsetClause<O>>where
L: QueryFragment<Mysql> + Send + 'a,
O: QueryFragment<Mysql> + Send + 'a,
Available on crate feature mysql_backend
only.
impl<'a, L, O> IntoBoxedClause<'a, Mysql> for LimitOffsetClause<LimitClause<L>, OffsetClause<O>>where L: QueryFragment<Mysql> + Send + 'a, O: QueryFragment<Mysql> + Send + 'a,
Available on crate feature
mysql_backend
only.§type BoxedClause = BoxedLimitOffsetClause<'a, Mysql>
type BoxedClause = BoxedLimitOffsetClause<'a, Mysql>
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<'a> IntoBoxedClause<'a, Mysql> for LimitOffsetClause<NoLimitClause, NoOffsetClause>
Available on crate feature mysql_backend
only.
impl<'a> IntoBoxedClause<'a, Mysql> for LimitOffsetClause<NoLimitClause, NoOffsetClause>
Available on crate feature
mysql_backend
only.§type BoxedClause = BoxedLimitOffsetClause<'a, Mysql>
type BoxedClause = BoxedLimitOffsetClause<'a, Mysql>
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<'a, L, O> IntoBoxedClause<'a, Pg> for LimitOffsetClause<L, O>where
L: QueryFragment<Pg> + Send + 'a,
O: QueryFragment<Pg> + Send + 'a,
Available on crate feature postgres_backend
only.
impl<'a, L, O> IntoBoxedClause<'a, Pg> for LimitOffsetClause<L, O>where L: QueryFragment<Pg> + Send + 'a, O: QueryFragment<Pg> + Send + 'a,
Available on crate feature
postgres_backend
only.§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<'a, L> IntoBoxedClause<'a, Sqlite> for LimitOffsetClause<LimitClause<L>, NoOffsetClause>where
L: QueryFragment<Sqlite> + Send + 'a,
Available on crate feature sqlite
only.
impl<'a, L> IntoBoxedClause<'a, Sqlite> for LimitOffsetClause<LimitClause<L>, NoOffsetClause>where L: QueryFragment<Sqlite> + Send + 'a,
Available on crate feature
sqlite
only.§type BoxedClause = BoxedLimitOffsetClause<'a, Sqlite>
type BoxedClause = BoxedLimitOffsetClause<'a, Sqlite>
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<'a, L, O> IntoBoxedClause<'a, Sqlite> for LimitOffsetClause<LimitClause<L>, OffsetClause<O>>where
L: QueryFragment<Sqlite> + Send + 'a,
O: QueryFragment<Sqlite> + Send + 'a,
Available on crate feature sqlite
only.
impl<'a, L, O> IntoBoxedClause<'a, Sqlite> for LimitOffsetClause<LimitClause<L>, OffsetClause<O>>where L: QueryFragment<Sqlite> + Send + 'a, O: QueryFragment<Sqlite> + Send + 'a,
Available on crate feature
sqlite
only.§type BoxedClause = BoxedLimitOffsetClause<'a, Sqlite>
type BoxedClause = BoxedLimitOffsetClause<'a, Sqlite>
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<'a> IntoBoxedClause<'a, Sqlite> for LimitOffsetClause<NoLimitClause, NoOffsetClause>
Available on crate feature sqlite
only.
impl<'a> IntoBoxedClause<'a, Sqlite> for LimitOffsetClause<NoLimitClause, NoOffsetClause>
Available on crate feature
sqlite
only.§type BoxedClause = BoxedLimitOffsetClause<'a, Sqlite>
type BoxedClause = BoxedLimitOffsetClause<'a, Sqlite>
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<'a, O> IntoBoxedClause<'a, Sqlite> for LimitOffsetClause<NoLimitClause, OffsetClause<O>>where
O: QueryFragment<Sqlite> + Send + 'a,
Available on crate feature sqlite
only.
impl<'a, O> IntoBoxedClause<'a, Sqlite> for LimitOffsetClause<NoLimitClause, OffsetClause<O>>where O: QueryFragment<Sqlite> + Send + 'a,
Available on crate feature
sqlite
only.§type BoxedClause = BoxedLimitOffsetClause<'a, Sqlite>
type BoxedClause = BoxedLimitOffsetClause<'a, Sqlite>
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<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