pub trait StepBuilderTrait {
// Required methods
fn decider(self, decider: DeciderCallback) -> Self;
fn throw_tolerant(self) -> Self;
fn get(name: String) -> Self;
fn validate(self) -> Self;
fn build(self) -> SyncStep;
}
Expand description
A trait for building synchronous steps.
Required Methods§
Sourcefn decider(self, decider: DeciderCallback) -> Self
fn decider(self, decider: DeciderCallback) -> Self
Sourcefn throw_tolerant(self) -> Self
fn throw_tolerant(self) -> Self
Configures the step to be tolerant to thrown exceptions.
§Returns
Returns a modified builder instance.
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.