pub struct ListTasksRequest { /* private fields */ }Expand description
获取任务列表请求
Implementations§
Source§impl ListTasksRequest
impl ListTasksRequest
Sourcepub fn tasklist_guid(self, tasklist_guid: impl Into<String>) -> Self
pub fn tasklist_guid(self, tasklist_guid: impl Into<String>) -> Self
设置任务清单 GUID
Sourcepub fn section_guid(self, section_guid: impl Into<String>) -> Self
pub fn section_guid(self, section_guid: impl Into<String>) -> Self
设置分组 GUID
Sourcepub fn page_token(self, page_token: impl Into<String>) -> Self
pub fn page_token(self, page_token: impl Into<String>) -> Self
设置分页标记
Sourcepub async fn execute(self) -> SDKResult<ListTasksResponse>
pub async fn execute(self) -> SDKResult<ListTasksResponse>
执行请求
Sourcepub async fn execute_with_options(
self,
option: RequestOption,
) -> SDKResult<ListTasksResponse>
pub async fn execute_with_options( self, option: RequestOption, ) -> SDKResult<ListTasksResponse>
执行请求(带选项)
Trait Implementations§
Source§impl Clone for ListTasksRequest
impl Clone for ListTasksRequest
Source§fn clone(&self) -> ListTasksRequest
fn clone(&self) -> ListTasksRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ListTasksRequest
impl !RefUnwindSafe for ListTasksRequest
impl Send for ListTasksRequest
impl Sync for ListTasksRequest
impl Unpin for ListTasksRequest
impl UnsafeUnpin 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