pub type RowSetResult = Result<RowSet, BoxedError>;
enum RowSetResult { Ok(Vec<Row>), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value