Skip to main content

UikaResult

Type Alias UikaResult 

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

Convenience alias used throughout the runtime and generated code.

Aliased Type§

pub enum UikaResult<T> {
    Ok(T),
    Err(UikaError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(UikaError)

Contains the error value