AgdaResult

Type Alias AgdaResult 

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

An Agda response that is either something good or some error.

Aliased Type§

pub enum AgdaResult<T> {
    Ok(T),
    Err(String),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(String)

Contains the error value