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