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