type ResultWithMethod<T, E> = Result<T, QueryError<E>>;Aliased Type§
enum ResultWithMethod<T, E> {
Ok(T),
Err(QueryError<E>),
}type ResultWithMethod<T, E> = Result<T, QueryError<E>>;enum ResultWithMethod<T, E> {
Ok(T),
Err(QueryError<E>),
}