pub struct AddRemindersRequest { /* private fields */ }Expand description
添加任务提醒请求
Implementations§
Source§impl AddRemindersRequest
impl AddRemindersRequest
Sourcepub fn add_reminder(self, reminder: impl Into<String>) -> Self
pub fn add_reminder(self, reminder: impl Into<String>) -> Self
添加单个提醒时间
Sourcepub async fn execute(self) -> SDKResult<AddRemindersResponse>
pub async fn execute(self) -> SDKResult<AddRemindersResponse>
执行请求
Sourcepub async fn execute_with_options(
self,
option: RequestOption,
) -> SDKResult<AddRemindersResponse>
pub async fn execute_with_options( self, option: RequestOption, ) -> SDKResult<AddRemindersResponse>
执行请求(带选项)
Trait Implementations§
Source§impl Clone for AddRemindersRequest
impl Clone for AddRemindersRequest
Source§fn clone(&self) -> AddRemindersRequest
fn clone(&self) -> AddRemindersRequest
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 AddRemindersRequest
impl !RefUnwindSafe for AddRemindersRequest
impl Send for AddRemindersRequest
impl Sync for AddRemindersRequest
impl Unpin for AddRemindersRequest
impl UnsafeUnpin for AddRemindersRequest
impl !UnwindSafe for AddRemindersRequest
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