calyx_utils

Type Alias CalyxResult

Source
pub type CalyxResult<T> = Result<T, Error>;
Expand description

Convience wrapper to represent success or meaningul compiler error.

Aliased Type§

enum CalyxResult<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value