pub type ToolResult<T> = Result<T, ToolError>;
Result type alias for tool operations.
pub enum ToolResult<T> { Ok(T), Err(ToolError), }
Contains the success value
Contains the error value