pub type DogeResult<T = Value> = Result<T, DogeError>;Expand description
The result of any fallible runtime operation. Defaults to yielding a
crate::Value since that is what almost every operator and builtin
produces.
Aliased Type§
pub enum DogeResult<T = Value> {
Ok(T),
Err(DogeError),
}