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