Skip to main content

ResolverResult

Type Alias ResolverResult 

Source
pub type ResolverResult = Result<Vec<String>, ExecutorError>;
Expand description

See: https://asimov-specs.github.io/program-patterns/#resolver

Aliased Type§

pub enum ResolverResult {
    Ok(Vec<String>),
    Err(ExecutorError),
}

Variants§

§1.0.0

Ok(Vec<String>)

Contains the success value

§1.0.0

Err(ExecutorError)

Contains the error value