Type Alias OpAsyncResult

Source
pub type OpAsyncResult<T, E> = Result<T, OpAsyncError<E>>;
Expand description

Shorthand for a Result where the error type is an OpAsyncError.

Aliased Type§

enum OpAsyncResult<T, E> {
    Ok(T),
    Err(OpAsyncError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OpAsyncError<E>)

Contains the error value