pub struct PaginationResponse {
pub total: usize,
pub count: usize,
pub offset: usize,
pub limit: usize,
pub has_more: bool,
}Expand description
Pagination metadata in responses
Fields§
§total: usizeTotal number of items available
count: usizeNumber of items returned in this response
offset: usizeCurrent offset
limit: usizeLimit used for this request
has_more: boolWhether there are more items after this page
Implementations§
Trait Implementations§
Source§impl Clone for PaginationResponse
impl Clone for PaginationResponse
Source§fn clone(&self) -> PaginationResponse
fn clone(&self) -> PaginationResponse
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 PaginationResponse
impl Debug for PaginationResponse
Source§impl<'de> Deserialize<'de> for PaginationResponse
impl<'de> Deserialize<'de> for PaginationResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PaginationResponse
impl RefUnwindSafe for PaginationResponse
impl Send for PaginationResponse
impl Sync for PaginationResponse
impl Unpin for PaginationResponse
impl UnsafeUnpin 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