pub struct PaginationResponse {
pub limit: i64,
pub offset: i64,
pub count: i64,
}Fields§
§limit: i64The maximum amount of items to return
offset: i64Where to start searching
count: i64The total number of records
Trait Implementations§
Source§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 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