pub type QueryResult<S> = Result<QueryData<S>, QueryError>;
Expand description
The result of a query – either an error or a table.
Aliased Type§
pub enum QueryResult<S> {
Ok(QueryData<S>),
Err(QueryError),
}
pub type QueryResult<S> = Result<QueryData<S>, QueryError>;
The result of a query – either an error or a table.
pub enum QueryResult<S> {
Ok(QueryData<S>),
Err(QueryError),
}