Type Alias ructe::Result

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

A result where the error type is a RucteError.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RucteError)

Contains the error value