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