Type Alias InterpreterResult

Source
pub type InterpreterResult<T> = Result<T, InterpreterError>;

Aliased Type§

enum InterpreterResult<T> {
    Ok(T),
    Err(InterpreterError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InterpreterError)

Contains the error value