Trait diesel:: prelude:: OffsetDsl
[−]
[src]
pub trait OffsetDsl { type Output: Query; fn offset(self, offset: i64) -> Self::Output; }
Sets the offset clause of a query. If there was already a offset clause, it will be overridden. This is automatically implemented for the various query builder types.
Associated Types
type Output: Query
Required Methods
Implementors
impl<'a, ST, QS, DB> OffsetDsl for BoxedSelectStatement<'a, ST, QS, DB> where DB: Backend, BoxedSelectStatement<'a, ST, QS, DB>: Query