pub struct TaskItem {
pub id: Option<String>,
pub title: String,
pub status: TaskStatus,
pub details: Option<String>,
pub updated: Option<String>,
}Expand description
Represents a task item found in markdown content
Task items can appear in various formats within memory bank files, such as task lists, progress tracking tables, or status sections.
Fields§
§id: Option<String>Task identifier (e.g., “task_001”, “TASK-123”)
title: StringTask title or description
status: TaskStatusCurrent status of the task
details: Option<String>Additional details or notes
updated: Option<String>Last updated date, if specified
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskItem
impl RefUnwindSafe for TaskItem
impl Send for TaskItem
impl Sync for TaskItem
impl Unpin 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