AVMResult

Type Alias AVMResult 

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

Aliased Type§

pub 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