Skip to main content

RlResult

Type Alias RlResult 

Source
pub type RlResult<T> = Result<T, RlError>;
Expand description

Convenience alias.

Aliased Type§

pub enum RlResult<T> {
    Ok(T),
    Err(RlError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RlError)

Contains the error value