RatResult

Type Alias RatResult 

Source
pub type RatResult<T> = Result<T, RatError>;
Expand description

RAT Engine 结果类型

Aliased Type§

pub enum RatResult<T> {
    Ok(T),
    Err(RatError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RatError)

Contains the error value