pub struct CreateTaskReminderBodyV1 {
pub trigger_time: i64,
pub type_: Option<String>,
}Expand description
创建任务提醒请求体(v1) 创建任务提醒请求体。
Fields§
§trigger_time: i64提醒时间(Unix 时间戳)
type_: Option<String>提醒类型
Trait Implementations§
Source§impl Clone for CreateTaskReminderBodyV1
impl Clone for CreateTaskReminderBodyV1
Source§fn clone(&self) -> CreateTaskReminderBodyV1
fn clone(&self) -> CreateTaskReminderBodyV1
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 CreateTaskReminderBodyV1
impl Debug for CreateTaskReminderBodyV1
Source§impl Default for CreateTaskReminderBodyV1
impl Default for CreateTaskReminderBodyV1
Source§fn default() -> CreateTaskReminderBodyV1
fn default() -> CreateTaskReminderBodyV1
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateTaskReminderBodyV1
impl RefUnwindSafe for CreateTaskReminderBodyV1
impl Send for CreateTaskReminderBodyV1
impl Sync for CreateTaskReminderBodyV1
impl Unpin for CreateTaskReminderBodyV1
impl UnsafeUnpin for CreateTaskReminderBodyV1
impl UnwindSafe for CreateTaskReminderBodyV1
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