pub type QueryResult<T> = Result<T, QueryError>;Expand description
The result type for query operations.
Aliased Type§
pub enum QueryResult<T> {
Ok(T),
Err(QueryError),
}pub type QueryResult<T> = Result<T, QueryError>;The result type for query operations.
pub enum QueryResult<T> {
Ok(T),
Err(QueryError),
}