Type Alias r6stats::R6Result

source ·
pub type R6Result<T> = Result<T, Error>;
Expand description

Library Result Type

Aliased Type§

enum R6Result<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value