pub type AVMResult<T, E> = Result<T, AVMError<E>>;
enum AVMResult<T, E> { Ok(T), Err(AVMError<E>), }
Contains the success value
Contains the error value