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§
Ok(T)
Contains the success value
Err(SyntaxInterpreterError<'a, E>)
Contains the error value