pub type AsyncResult<T, E = Infallible> = Result<T, AsyncError<E>>;Expand description
Result type used by async database execution helpers.
Aliased Type§
pub enum AsyncResult<T, E = Infallible> {
Ok(T),
Err(AsyncError<E>),
}pub type AsyncResult<T, E = Infallible> = Result<T, AsyncError<E>>;Result type used by async database execution helpers.
pub enum AsyncResult<T, E = Infallible> {
Ok(T),
Err(AsyncError<E>),
}