pub struct ListTasksRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Expand description
ListTasksRequest
Fields§
§max_results: Option<i64>
The maximum number of tasks to return.
next_token: Option<String>
An opaque string that indicates the position at which to begin the next list of tasks.
Trait Implementations§
Source§impl Clone for ListTasksRequest
impl Clone for ListTasksRequest
Source§fn clone(&self) -> ListTasksRequest
fn clone(&self) -> ListTasksRequest
Returns a copy 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 ListTasksRequest
impl Debug for ListTasksRequest
Source§impl Default for ListTasksRequest
impl Default for ListTasksRequest
Source§fn default() -> ListTasksRequest
fn default() -> ListTasksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListTasksRequest
impl PartialEq for ListTasksRequest
Source§impl Serialize for ListTasksRequest
impl Serialize for ListTasksRequest
impl StructuralPartialEq for ListTasksRequest
Auto Trait Implementations§
impl Freeze for ListTasksRequest
impl RefUnwindSafe for ListTasksRequest
impl Send for ListTasksRequest
impl Sync for ListTasksRequest
impl Unpin for ListTasksRequest
impl UnwindSafe for ListTasksRequest
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