pub struct ToolDetail {
pub name: String,
pub args: String,
pub result: Option<String>,
pub is_error: bool,
}Fields§
§name: String§args: String§result: Option<String>§is_error: boolTrait Implementations§
Source§impl Debug for ToolDetail
impl Debug for ToolDetail
Auto Trait Implementations§
impl Freeze for ToolDetail
impl RefUnwindSafe for ToolDetail
impl Send for ToolDetail
impl Sync for ToolDetail
impl Unpin for ToolDetail
impl UnwindSafe for ToolDetail
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