Type Alias ResolveResult

Source
pub type ResolveResult = Result<Value, ExecutionError>;

Aliased Type§

pub 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.