pgwire::pg_response

Type Alias RowSetResult

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

Aliased Type§

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

Variants§

§1.0.0

Ok(Vec<Row>)

Contains the success value

§1.0.0

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

Contains the error value