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