pub enum ToolError {
NotFound(String),
InvalidInput(String),
ExecutionFailed(Box<dyn Error + Send + Sync>),
PermissionDenied(String),
Cancelled,
ModelRetry(String),
}Expand description
Errors from tool operations.
Variants§
NotFound(String)
Tool not found in registry.
InvalidInput(String)
Invalid input for the tool.
ExecutionFailed(Box<dyn Error + Send + Sync>)
Tool execution failed.
PermissionDenied(String)
Permission denied for this tool call.
Cancelled
Tool execution was cancelled.
ModelRetry(String)
Tool requests the model to retry with the given hint.
The hint is returned to the model as an error tool result so it can self-correct and call the tool again with adjusted arguments.
Trait Implementations§
Source§impl Error for ToolError
impl Error for ToolError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for ToolError
impl !RefUnwindSafe for ToolError
impl Send for ToolError
impl Sync for ToolError
impl Unpin for ToolError
impl UnsafeUnpin for ToolError
impl !UnwindSafe for ToolError
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