pub type QueryResult<T> = Result<T, QueryError>;
enum QueryResult<T> { Ok(T), Err(QueryError), }
Contains the success value
Contains the error value