Result

Type Alias Result 

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

The default result type for most fallible operations in the language pipeline.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CarmenError)

Contains the error value