Type Alias RowSetResult

Source
pub type RowSetResult = Result<RowSet, BoxedError>;

Aliased Type§

enum RowSetResult {
    Ok(Vec<Row>),
    Err(Box<dyn Error + Send + Sync>),
}

Variants§

§1.0.0

Ok(Vec<Row>)

Contains the success value

§1.0.0

Err(Box<dyn Error + Send + Sync>)

Contains the error value