pub type InterpreterResult<T> = Result<T, InstructionError>;Expand description
A type alias for the interpreter result.
Aliased Type§
pub enum InterpreterResult<T> {
Ok(T),
Err(InstructionError),
}pub type InterpreterResult<T> = Result<T, InstructionError>;A type alias for the interpreter result.
pub enum InterpreterResult<T> {
Ok(T),
Err(InstructionError),
}