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