Skip to main content

AsyncResult

Type Alias AsyncResult 

Source
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>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AsyncError<E>)

Contains the error value