rlg::error

Type Alias RlgResult

Source
pub type RlgResult<T> = Result<T, RlgError>;
Expand description

Type alias for a Result with RlgError as the error type.

Aliased Type§

enum RlgResult<T> {
    Ok(T),
    Err(RlgError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RlgError)

Contains the error value