pub struct PaginationResponse {
pub current_page: Option<i64>,
pub per_page: Option<i64>,
pub total_entries: Option<i64>,
pub total_pages: Option<i64>,
}Expand description
PaginationResponse
JSON schema
{
"type": "object",
"properties": {
"current_page": {
"examples": [
1
],
"type": "integer"
},
"per_page": {
"examples": [
25
],
"type": "integer"
},
"total_entries": {
"examples": [
1
],
"type": "integer"
},
"total_pages": {
"examples": [
1
],
"type": "integer"
}
}
}Fields§
§current_page: Option<i64>§per_page: Option<i64>§total_entries: Option<i64>§total_pages: Option<i64>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 Default for PaginationResponse
impl Default 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
Source§impl From<&PaginationResponse> for PaginationResponse
impl From<&PaginationResponse> for PaginationResponse
Source§fn from(value: &PaginationResponse) -> Self
fn from(value: &PaginationResponse) -> Self
Converts to this type from the input type.
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