pub struct PaginationResults {
pub page: i32,
pub page_size: i32,
pub total_items: Option<i64>,
pub next_token: Option<String>,
pub is_cursor: bool,
}Fields§
§page: i32§page_size: i32§total_items: Option<i64>§next_token: Option<String>§is_cursor: boolTrait Implementations§
Source§impl Clone for PaginationResults
impl Clone for PaginationResults
Source§fn clone(&self) -> PaginationResults
fn clone(&self) -> PaginationResults
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 PaginationResults
impl Debug for PaginationResults
Source§impl<'de> Deserialize<'de> for PaginationResults
impl<'de> Deserialize<'de> for PaginationResults
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 PaginationResults
impl RefUnwindSafe for PaginationResults
impl Send for PaginationResults
impl Sync for PaginationResults
impl Unpin for PaginationResults
impl UnwindSafe for PaginationResults
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