pub type StepResult<T> = Result<NextStep<T>, StepError>;
Result returning from task steps
pub enum StepResult<T> { Ok(NextStep<T>), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value