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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(DistError)

Contains the error value