Type Alias oci_distribution::errors::Result

source ·
pub type Result<T> = Result<T, OciDistributionError>;
Expand description

Helper type to declare Result objects that might return a OciDistributionError

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(OciDistributionError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OciDistributionError)

Contains the error value