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