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