Result

Type Alias Result 

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

Custom Result type for this library. All Errors exposed by this library will be returned as RLanLibError

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(RLanLibError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RLanLibError)

Contains the error value