pub type StepFn<T> = Box<dyn Fn(T) -> Pin<Box<dyn Future<Output = AppResult<T>> + Send>> + Send + Sync>;
The type of the async step function.
pub struct StepFn<T>(/* private fields */);