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