pub struct TodoEntry {
pub id: String,
pub content: String,
pub done: bool,
}Expand description
A TODO item extracted from a TodoWrite tool call in the transcript.
Fields§
§id: String§content: String§done: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for TodoEntry
impl<'de> Deserialize<'de> for TodoEntry
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 TodoEntry
impl RefUnwindSafe for TodoEntry
impl Send for TodoEntry
impl Sync for TodoEntry
impl Unpin for TodoEntry
impl UnsafeUnpin for TodoEntry
impl UnwindSafe for TodoEntry
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