pub trait Step<S, Ctx, Compact, Input, Current, Next, Encode, Index> {
// Required method
fn step(
self,
service: S,
) -> StepBuilder<Ctx, Compact, Input, Next, Encode, Index>;
}
Expand description
Helper trait for building new steps from StepBuilder
Required Methods§
Sourcefn step(
self,
service: S,
) -> StepBuilder<Ctx, Compact, Input, Next, Encode, Index>
fn step( self, service: S, ) -> StepBuilder<Ctx, Compact, Input, Next, Encode, Index>
Helper function for building new steps from StepBuilder