Type Alias PackageResult
pub type PackageResult<T> = Result<T, PackageError>;
Expand description
A result type with a package-related error.
Aliased Type§
enum PackageResult<T> {
Ok(T),
Err(PackageError),
}
pub type PackageResult<T> = Result<T, PackageError>;
A result type with a package-related error.
enum PackageResult<T> {
Ok(T),
Err(PackageError),
}