pub type UikaResult<T> = Result<T, UikaError>;
Convenience alias used throughout the runtime and generated code.
pub enum UikaResult<T> { Ok(T), Err(UikaError), }
Contains the success value
Contains the error value