mylang_ast_interp

Type Alias AstInterpResult

source
pub type AstInterpResult<T> = Result<T, AstInterpError>;

Aliased Type§

enum AstInterpResult<T> {
    Ok(T),
    Err(AstInterpError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AstInterpError)

Contains the error value