pub struct TodoStore { /* private fields */ }Expand description
Shared in-process store for agent to-do items.
Accessed via the todo_read and todo_write builtin tools.
Thread-safe: backed by a std::sync::RwLock.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for TodoStore
impl RefUnwindSafe for TodoStore
impl Send for TodoStore
impl Sync for TodoStore
impl Unpin for TodoStore
impl UnsafeUnpin for TodoStore
impl UnwindSafe for TodoStore
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