Type Alias QueryResult

Source
pub type QueryResult<B> = Result<(), B>;
Expand description

Used to determine if a query should keep going or not

Aliased Type§

pub enum QueryResult<B> {
    Ok(()),
    Err(B),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(B)

Contains the error value