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