Type Alias cargo_dist::errors::DistResult
source · pub type DistResult<T> = Result<T, DistError>;Expand description
An alias for the NEW Result type for this crate (undergoing migration)
Aliased Type§
enum DistResult<T> {
Ok(T),
Err(DistError),
}