pub type Result<T, E = PathError> = Result<T, E>;
A convenient result type alias for operations within this crate.
pub enum Result<T, E = PathError> { Ok(T), Err(E), }
Contains the success value
Contains the error value