Type Alias RR

Source
pub type RR<T> = RResult<T>;

Aliased Type§

pub enum RR<T> {
    Ok(T),
    Err(RError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RError)

Contains the error value