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>
impl<'a, L, O> IntoBoxedClause<'a, Pg> for LimitOffsetClause<L, O>
§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<L, O> QueryFragment<Pg> for LimitOffsetClause<L, O>
impl<L, O> QueryFragment<Pg> for LimitOffsetClause<L, O>
source§fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, Pg>) -> QueryResult<()>
fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, Pg>) -> 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<()>
Converts this
QueryFragment
to its SQL representation. Read moresource§fn collect_binds<'b>(
&'b self,
out: &mut <DB as HasBindCollector<'b>>::BindCollector,
metadata_lookup: &mut DB::MetadataLookup,
backend: &'b DB,
) -> QueryResult<()>
fn collect_binds<'b>( &'b self, out: &mut <DB as HasBindCollector<'b>>::BindCollector, metadata_lookup: &mut DB::MetadataLookup, backend: &'b DB, ) -> QueryResult<()>
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>
Is this query safe to store in the prepared statement cache? Read more
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> Freeze for LimitOffsetClause<Limit, Offset>
impl<Limit, Offset> RefUnwindSafe for LimitOffsetClause<Limit, Offset>where
Limit: RefUnwindSafe,
Offset: RefUnwindSafe,
impl<Limit, Offset> Send for LimitOffsetClause<Limit, Offset>
impl<Limit, Offset> Sync for LimitOffsetClause<Limit, Offset>
impl<Limit, Offset> Unpin for LimitOffsetClause<Limit, Offset>
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<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)