pub type WorkflowResult<T> = Result<T, WorkflowError>;
Expand description

Internal type to handle running workflows

Aliased Type§

enum WorkflowResult<T> {
    Ok(T),
    Err(WorkflowError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(WorkflowError)

Contains the error value