pub struct Pagination<Cursor = Ulid> {
pub before: Option<Cursor>,
pub after: Option<Cursor>,
pub count: usize,
pub direction: PaginationDirection,
}
Expand description
Pagination parameters
Fields§
§before: Option<Cursor>
The cursor to start from
after: Option<Cursor>
The cursor to end at
count: usize
The maximum number of items to return
direction: PaginationDirection
In which direction to paginate
Implementations§
Source§impl<C> Pagination<C>
impl<C> Pagination<C>
Sourcepub fn try_new(
before: Option<C>,
after: Option<C>,
first: Option<usize>,
last: Option<usize>,
) -> Result<Self, InvalidPagination>
pub fn try_new( before: Option<C>, after: Option<C>, first: Option<usize>, last: Option<usize>, ) -> Result<Self, InvalidPagination>
Creates a new Pagination
from user-provided parameters.
§Errors
Either first
or last
must be provided, else this function will
return an InvalidPagination
error.
Sourcepub const fn first(first: usize) -> Self
pub const fn first(first: usize) -> Self
Creates a Pagination
which gets the first N items
Sourcepub const fn last(last: usize) -> Self
pub const fn last(last: usize) -> Self
Creates a Pagination
which gets the last N items
Sourcepub fn clear_before(self) -> Self
pub fn clear_before(self) -> Self
Clear the before cursor
Sourcepub fn clear_after(self) -> Self
pub fn clear_after(self) -> Self
Clear the after cursor
Trait Implementations§
Source§impl<Cursor: Clone> Clone for Pagination<Cursor>
impl<Cursor: Clone> Clone for Pagination<Cursor>
Source§fn clone(&self) -> Pagination<Cursor>
fn clone(&self) -> Pagination<Cursor>
Returns a duplicate 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<Cursor: Debug> Debug for Pagination<Cursor>
impl<Cursor: Debug> Debug for Pagination<Cursor>
Source§impl<Cursor: PartialEq> PartialEq for Pagination<Cursor>
impl<Cursor: PartialEq> PartialEq for Pagination<Cursor>
impl<Cursor: Copy> Copy for Pagination<Cursor>
impl<Cursor: Eq> Eq for Pagination<Cursor>
impl<Cursor> StructuralPartialEq for Pagination<Cursor>
Auto Trait Implementations§
impl<Cursor> Freeze for Pagination<Cursor>where
Cursor: Freeze,
impl<Cursor> RefUnwindSafe for Pagination<Cursor>where
Cursor: RefUnwindSafe,
impl<Cursor> Send for Pagination<Cursor>where
Cursor: Send,
impl<Cursor> Sync for Pagination<Cursor>where
Cursor: Sync,
impl<Cursor> Unpin for Pagination<Cursor>where
Cursor: Unpin,
impl<Cursor> UnwindSafe for Pagination<Cursor>where
Cursor: 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: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more