pub struct DeleteSectionRequest { /* private fields */ }Expand description
删除分组请求
Implementations§
Source§impl DeleteSectionRequest
impl DeleteSectionRequest
Sourcepub fn new(
config: Arc<Config>,
tasklist_guid: String,
section_guid: String,
) -> Self
pub fn new( config: Arc<Config>, tasklist_guid: String, section_guid: String, ) -> Self
创建新的请求构建器。
Sourcepub async fn execute(self) -> SDKResult<DeleteSectionResponse>
pub async fn execute(self) -> SDKResult<DeleteSectionResponse>
执行请求
Sourcepub async fn execute_with_options(
self,
option: RequestOption,
) -> SDKResult<DeleteSectionResponse>
pub async fn execute_with_options( self, option: RequestOption, ) -> SDKResult<DeleteSectionResponse>
执行请求(带选项)
Trait Implementations§
Source§impl Clone for DeleteSectionRequest
impl Clone for DeleteSectionRequest
Source§fn clone(&self) -> DeleteSectionRequest
fn clone(&self) -> DeleteSectionRequest
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 DeleteSectionRequest
impl !RefUnwindSafe for DeleteSectionRequest
impl Send for DeleteSectionRequest
impl Sync for DeleteSectionRequest
impl Unpin for DeleteSectionRequest
impl UnsafeUnpin for DeleteSectionRequest
impl !UnwindSafe for DeleteSectionRequest
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