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§
Sourcefn tasklet(self, step_callback: StepCallback) -> Self
fn tasklet(self, step_callback: StepCallback) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.