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>),
}pub type OpAsyncResult<T, E> = Result<T, OpAsyncError<E>>;Shorthand for a Result where the error type is an OpAsyncError.
enum OpAsyncResult<T, E> {
Ok(T),
Err(OpAsyncError<E>),
}