pub type ResolveResult = Result<Value, ExecutionError>;

Aliased Type§

enum ResolveResult {
    Ok(Value),
    Err(ExecutionError),
}

Variants§

§1.0.0

Ok(Value)

Contains the success value

§1.0.0

Err(ExecutionError)

Contains the error value

Trait Implementations§

source§

impl From<ExecutionError> for ResolveResult

source§

fn from(value: ExecutionError) -> Self

Converts to this type from the input type.
source§

impl From<Value> for ResolveResult

source§

fn from(value: Value) -> Self

Converts to this type from the input type.