pub type QResult<T> = Result<T, QError>;
Result of most things in this library that use IO or can fail for other reasons.
pub enum QResult<T> { Ok(T), Err(QError), }
Contains the success value
Contains the error value