pub struct TaskItem {Show 14 fields
pub task_guid: String,
pub summary: String,
pub description: Option<String>,
pub status: String,
pub tasklist_guid: Option<String>,
pub section_guid: Option<String>,
pub priority: Option<i32>,
pub start: Option<String>,
pub due: Option<String>,
pub created_at: String,
pub updated_at: String,
pub completed_at: Option<String>,
pub assignee: Option<String>,
pub creator: Option<String>,
}Expand description
任务列表项
Fields§
§task_guid: String任务 GUID
summary: String任务标题
description: Option<String>任务描述
status: String任务状态
tasklist_guid: Option<String>任务清单 GUID
section_guid: Option<String>分组 GUID
priority: Option<i32>任务优先级
start: Option<String>任务开始时间
due: Option<String>任务截止时间
created_at: String创建时间
updated_at: String更新时间
completed_at: Option<String>完成时间
assignee: Option<String>任务执行者
creator: Option<String>任务创建者
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TaskItem
impl<'de> Deserialize<'de> for TaskItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TaskItem
Auto Trait Implementations§
impl Freeze for TaskItem
impl RefUnwindSafe for TaskItem
impl Send for TaskItem
impl Sync for TaskItem
impl Unpin for TaskItem
impl UnsafeUnpin for TaskItem
impl UnwindSafe for TaskItem
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