pub struct AddRemindersBody {
pub reminders: Vec<String>,
}Expand description
添加任务提醒请求体
Fields§
§reminders: Vec<String>提醒时间列表(ISO 8601 格式)
Trait Implementations§
Source§impl Clone for AddRemindersBody
impl Clone for AddRemindersBody
Source§fn clone(&self) -> AddRemindersBody
fn clone(&self) -> AddRemindersBody
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 moreSource§impl Debug for AddRemindersBody
impl Debug for AddRemindersBody
Source§impl Default for AddRemindersBody
impl Default for AddRemindersBody
Source§fn default() -> AddRemindersBody
fn default() -> AddRemindersBody
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AddRemindersBody
impl RefUnwindSafe for AddRemindersBody
impl Send for AddRemindersBody
impl Sync for AddRemindersBody
impl Unpin for AddRemindersBody
impl UnsafeUnpin for AddRemindersBody
impl UnwindSafe for AddRemindersBody
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