Type Alias air_test_utils::AVMResult

source ·
pub type AVMResult<T, E> = Result<T, AVMError<E>>;

Aliased Type§

enum AVMResult<T, E> {
    Ok(T),
    Err(AVMError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AVMError<E>)

Contains the error value