pub struct RemoveDependenciesRequest { /* private fields */ }Expand description
移除任务依赖请求
Implementations§
Source§impl RemoveDependenciesRequest
impl RemoveDependenciesRequest
Sourcepub fn dependency_guids(self, dependency_guids: Vec<String>) -> Self
pub fn dependency_guids(self, dependency_guids: Vec<String>) -> Self
设置依赖 GUID 列表
Sourcepub fn remove_dependency(self, dependency_guid: impl Into<String>) -> Self
pub fn remove_dependency(self, dependency_guid: impl Into<String>) -> Self
移除单个依赖
Sourcepub async fn execute(self) -> SDKResult<RemoveDependenciesResponse>
pub async fn execute(self) -> SDKResult<RemoveDependenciesResponse>
执行请求
Sourcepub async fn execute_with_options(
self,
option: RequestOption,
) -> SDKResult<RemoveDependenciesResponse>
pub async fn execute_with_options( self, option: RequestOption, ) -> SDKResult<RemoveDependenciesResponse>
执行请求(带选项)
Trait Implementations§
Source§impl Clone for RemoveDependenciesRequest
impl Clone for RemoveDependenciesRequest
Source§fn clone(&self) -> RemoveDependenciesRequest
fn clone(&self) -> RemoveDependenciesRequest
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 RemoveDependenciesRequest
impl !RefUnwindSafe for RemoveDependenciesRequest
impl Send for RemoveDependenciesRequest
impl Sync for RemoveDependenciesRequest
impl Unpin for RemoveDependenciesRequest
impl UnsafeUnpin for RemoveDependenciesRequest
impl !UnwindSafe for RemoveDependenciesRequest
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