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