pub type Result<T, E = ToolError> = Result<T, E>;
Crate-wide result type alias that bubbles up ToolError by default.
ToolError
pub enum Result<T, E = ToolError> { Ok(T), Err(E), }
Contains the success value
Contains the error value