pub struct TaskJson {
pub uuid: String,
pub status: String,
pub id: i32,
pub summary: String,
pub notes: String,
pub tags: Vec<String>,
pub project: String,
pub priority: String,
pub created: String,
pub resolved: String,
pub due: String,
}Expand description
JSON representation of a task (matches Go version output)
Fields§
§uuid: String§status: String§id: i32§summary: String§notes: String§project: String§priority: String§created: String§resolved: String§due: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for TaskJson
impl RefUnwindSafe for TaskJson
impl Send for TaskJson
impl Sync for TaskJson
impl Unpin for TaskJson
impl UnwindSafe for TaskJson
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