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