pub struct TodoListState {
pub items: Vec<TodoItem>,
pub extra: BTreeMap<String, Value>,
}Expand description
Checklist maintained by the agent.
Fields§
§items: Vec<TodoItem>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for TodoListState
impl Clone for TodoListState
Source§fn clone(&self) -> TodoListState
fn clone(&self) -> TodoListState
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 TodoListState
impl Debug for TodoListState
Source§impl<'de> Deserialize<'de> for TodoListState
impl<'de> Deserialize<'de> for TodoListState
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 TodoListState
impl RefUnwindSafe for TodoListState
impl Send for TodoListState
impl Sync for TodoListState
impl Unpin for TodoListState
impl UnsafeUnpin for TodoListState
impl UnwindSafe for TodoListState
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