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