pub struct PaginationOptions {
pub current_page: i64,
pub per_page: i64,
pub per_page_limit: i64,
pub total_records: i64,
}
Expand description
Pagination options for ClickHouse queries
Fields§
§current_page: i64
§per_page: i64
§per_page_limit: i64
§total_records: i64
Implementations§
Trait Implementations§
Source§impl Clone for PaginationOptions
impl Clone for PaginationOptions
Source§fn clone(&self) -> PaginationOptions
fn clone(&self) -> PaginationOptions
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 moreAuto Trait Implementations§
impl Freeze for PaginationOptions
impl RefUnwindSafe for PaginationOptions
impl Send for PaginationOptions
impl Sync for PaginationOptions
impl Unpin for PaginationOptions
impl UnwindSafe for PaginationOptions
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