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