pub struct ResolvedPagination {
pub page: u64,
pub per_page: u64,
}Expand description
Resolved (validated, clamped) pagination values.
Fields§
§page: u64§per_page: u64Implementations§
Trait Implementations§
Source§impl Clone for ResolvedPagination
impl Clone for ResolvedPagination
Source§fn clone(&self) -> ResolvedPagination
fn clone(&self) -> ResolvedPagination
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 Debug for ResolvedPagination
impl Debug for ResolvedPagination
impl Copy for ResolvedPagination
Auto Trait Implementations§
impl Freeze for ResolvedPagination
impl RefUnwindSafe for ResolvedPagination
impl Send for ResolvedPagination
impl Sync for ResolvedPagination
impl Unpin for ResolvedPagination
impl UnsafeUnpin for ResolvedPagination
impl UnwindSafe for ResolvedPagination
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