pub struct UpdateTaskBodyV1 {
pub summary: Option<String>,
pub description: Option<String>,
pub start: Option<String>,
pub due: Option<String>,
pub priority: Option<i32>,
}Expand description
更新任务请求体(v1) 更新任务请求体。
Fields§
§summary: Option<String>任务标题 任务标题。
description: Option<String>任务描述 任务描述。
start: Option<String>任务开始时间 任务开始时间。
due: Option<String>任务截止时间 任务截止时间。
priority: Option<i32>任务优先级(1-5) 任务优先级。
Trait Implementations§
Source§impl Clone for UpdateTaskBodyV1
impl Clone for UpdateTaskBodyV1
Source§fn clone(&self) -> UpdateTaskBodyV1
fn clone(&self) -> UpdateTaskBodyV1
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 UpdateTaskBodyV1
impl Debug for UpdateTaskBodyV1
Source§impl Default for UpdateTaskBodyV1
impl Default for UpdateTaskBodyV1
Source§fn default() -> UpdateTaskBodyV1
fn default() -> UpdateTaskBodyV1
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateTaskBodyV1
impl RefUnwindSafe for UpdateTaskBodyV1
impl Send for UpdateTaskBodyV1
impl Sync for UpdateTaskBodyV1
impl Unpin for UpdateTaskBodyV1
impl UnsafeUnpin for UpdateTaskBodyV1
impl UnwindSafe for UpdateTaskBodyV1
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