Skip to main content

NativeResult

Type Alias NativeResult 

Source
pub type NativeResult = Result<Value, Fault>;
Expand description

Result type for a native function.

Aliased Type§

pub enum NativeResult {
    Ok(Value),
    Err(Fault),
}

Variants§

§1.0.0

Ok(Value)

Contains the success value

§1.0.0

Err(Fault)

Contains the error value