Type Alias bitbazaar::errors::RResult

source ·
pub type RResult<T, C> = Result<T, Report<C>>;
Expand description

Shorthand for a Result with a [Report] as the error variant

Aliased Type§

enum RResult<T, C> {
    Ok(T),
    Err(Report<C>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Report<C>)

Contains the error value