SyntaxInterpreterResult

Type Alias SyntaxInterpreterResult 

Source
pub type SyntaxInterpreterResult<'a, T, E> = Result<T, SyntaxInterpreterError<'a, E>>;

Aliased Type§

pub enum SyntaxInterpreterResult<'a, T, E> {
    Ok(T),
    Err(SyntaxInterpreterError<'a, E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SyntaxInterpreterError<'a, E>)

Contains the error value