Type Alias QResult

Source
pub type QResult<T> = Result<T, QError>;
Expand description

Result of most things in this library that use IO or can fail for other reasons.

Aliased Type§

pub enum QResult<T> {
    Ok(T),
    Err(QError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(QError)

Contains the error value