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