pub struct SubTodoItem {
pub title: String,
}Expand description
A sub-step within a parent todo item.
Sub-todos are informational guidance for the LLM — they appear in
format_status output but are NOT displayed in the TUI todo panel.
Fields§
§title: StringSub-step title text.
Trait Implementations§
Source§impl Clone for SubTodoItem
impl Clone for SubTodoItem
Source§fn clone(&self) -> SubTodoItem
fn clone(&self) -> SubTodoItem
Returns a duplicate of the value. Read more
1.0.0 · 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 SubTodoItem
impl Debug for SubTodoItem
Source§impl<'de> Deserialize<'de> for SubTodoItem
impl<'de> Deserialize<'de> for SubTodoItem
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
Auto Trait Implementations§
impl Freeze for SubTodoItem
impl RefUnwindSafe for SubTodoItem
impl Send for SubTodoItem
impl Sync for SubTodoItem
impl Unpin for SubTodoItem
impl UnsafeUnpin for SubTodoItem
impl UnwindSafe for SubTodoItem
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