Type Alias RResult

Source
pub type RResult<T> = Result<T, RandomXError>;

Aliased Type§

pub enum RResult<T> {
    Ok(T),
    Err(RandomXError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RandomXError)

Contains the error value