pub struct PaginationResponse {
pub page: u32,
pub limit: u32,
pub total: i64,
}Expand description
Pagination for response
Fields§
§page: u32§limit: u32§total: i64Implementations§
Trait Implementations§
Source§impl Clone for PaginationResponse
impl Clone for PaginationResponse
Source§fn clone(&self) -> PaginationResponse
fn clone(&self) -> PaginationResponse
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 Debug for PaginationResponse
impl Debug for PaginationResponse
Source§impl PartialEq for PaginationResponse
impl PartialEq for PaginationResponse
impl StructuralPartialEq for PaginationResponse
Auto Trait Implementations§
impl Freeze for PaginationResponse
impl RefUnwindSafe for PaginationResponse
impl Send for PaginationResponse
impl Sync for PaginationResponse
impl Unpin for PaginationResponse
impl UnwindSafe for PaginationResponse
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