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