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