pub struct PaginationMeta {
pub page: u32,
pub per_page: u32,
pub total: Option<u64>,
pub total_pages: Option<u32>,
pub has_more: bool,
}
Expand description
Pagination metadata for API responses
Fields§
§page: u32
§per_page: u32
§total: Option<u64>
§total_pages: Option<u32>
§has_more: bool
Trait Implementations§
Source§impl Debug for PaginationMeta
impl Debug for PaginationMeta
Source§impl<'de> Deserialize<'de> for PaginationMeta
impl<'de> Deserialize<'de> for PaginationMeta
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 PaginationMeta
impl RefUnwindSafe for PaginationMeta
impl Send for PaginationMeta
impl Sync for PaginationMeta
impl Unpin for PaginationMeta
impl UnwindSafe for PaginationMeta
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