pub type PkgResult<T> = Result<T, Error>;
Result type for this crate.
enum PkgResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value