pub struct TodoListResult {
pub todos: Vec<TodoItem>,
}Expand description
Result for todo operations
Fields§
§todos: Vec<TodoItem>Trait Implementations§
Source§impl Clone for TodoListResult
impl Clone for TodoListResult
Source§fn clone(&self) -> TodoListResult
fn clone(&self) -> TodoListResult
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 TodoListResult
impl Debug for TodoListResult
Source§impl<'de> Deserialize<'de> for TodoListResult
impl<'de> Deserialize<'de> for TodoListResult
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
Source§impl From<TodoListResult> for ToolResult
impl From<TodoListResult> for ToolResult
Source§fn from(r: TodoListResult) -> Self
fn from(r: TodoListResult) -> Self
Converts to this type from the input type.
Source§impl Serialize for TodoListResult
impl Serialize for TodoListResult
impl ToolOutput for TodoListResult
Auto Trait Implementations§
impl Freeze for TodoListResult
impl RefUnwindSafe for TodoListResult
impl Send for TodoListResult
impl Sync for TodoListResult
impl Unpin for TodoListResult
impl UnwindSafe for TodoListResult
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