pub trait SimpleStepBuilderTrait<I, O> {
    // Required method
    fn tasklet(self, step_callback: StepCallback) -> Self;
}
Expand description

A trait for building simple synchronous steps.

Required Methods§

source

fn tasklet(self, step_callback: StepCallback) -> Self

Configures the step with a tasklet callback.

§Arguments
  • step_callback - The tasklet callback function.
§Returns

Returns a modified builder instance.

Object Safety§

This trait is not object safe.

Implementors§