pub struct RepeatUntilStep<S, R, Input, Output> { /* private fields */ }Expand description
The step implementation for the repeat_until layer.
Trait Implementations§
Source§impl<S: Clone, R: Clone, Input: Clone, Output: Clone> Clone for RepeatUntilStep<S, R, Input, Output>
impl<S: Clone, R: Clone, Input: Clone, Output: Clone> Clone for RepeatUntilStep<S, R, Input, Output>
Source§fn clone(&self) -> RepeatUntilStep<S, R, Input, Output>
fn clone(&self) -> RepeatUntilStep<S, R, Input, Output>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<S: Debug, R: Debug, Input: Debug, Output: Debug> Debug for RepeatUntilStep<S, R, Input, Output>
impl<S: Debug, R: Debug, Input: Debug, Output: Debug> Debug for RepeatUntilStep<S, R, Input, Output>
Source§impl<B, F, Input, Res, S, MetaErr, Err, CodecError> Step<Input, B> for RepeatUntilStep<S, F, Input, Res>where
F: Service<Task<Input, B::Context, B::IdType>, Response = Option<Res>> + Send + Sync + 'static + Clone,
B: BackendExt<Error = Err> + Send + Sync + Clone + Sink<Task<B::Compact, B::Context, B::IdType>, Error = Err> + Unpin + 'static,
B::Context: MetadataExt<RepeaterState<B::IdType>, Error = MetaErr> + MetadataExt<WorkflowContext, Error = MetaErr> + Send + 'static,
B::Codec: Codec<Input, Error = CodecError, Compact = B::Compact> + Codec<Res, Error = CodecError, Compact = B::Compact> + Codec<Option<Res>, Error = CodecError, Compact = B::Compact> + 'static,
B::IdType: GenerateId + Send + 'static,
Err: Error + Send + Sync + 'static,
CodecError: Error + Send + Sync + 'static,
F::Error: Into<BoxDynError> + Send + 'static,
MetaErr: Error + Send + Sync + 'static,
F::Future: Send + 'static,
B::Compact: Send + 'static,
Input: Send + Sync + 'static,
Res: Send + Sync + 'static,
S: Step<Input, B> + Send + 'static,
impl<B, F, Input, Res, S, MetaErr, Err, CodecError> Step<Input, B> for RepeatUntilStep<S, F, Input, Res>where
F: Service<Task<Input, B::Context, B::IdType>, Response = Option<Res>> + Send + Sync + 'static + Clone,
B: BackendExt<Error = Err> + Send + Sync + Clone + Sink<Task<B::Compact, B::Context, B::IdType>, Error = Err> + Unpin + 'static,
B::Context: MetadataExt<RepeaterState<B::IdType>, Error = MetaErr> + MetadataExt<WorkflowContext, Error = MetaErr> + Send + 'static,
B::Codec: Codec<Input, Error = CodecError, Compact = B::Compact> + Codec<Res, Error = CodecError, Compact = B::Compact> + Codec<Option<Res>, Error = CodecError, Compact = B::Compact> + 'static,
B::IdType: GenerateId + Send + 'static,
Err: Error + Send + Sync + 'static,
CodecError: Error + Send + Sync + 'static,
F::Error: Into<BoxDynError> + Send + 'static,
MetaErr: Error + Send + Sync + 'static,
F::Future: Send + 'static,
B::Compact: Send + 'static,
Input: Send + Sync + 'static,
Res: Send + Sync + 'static,
S: Step<Input, B> + Send + 'static,
Auto Trait Implementations§
impl<S, R, Input, Output> Freeze for RepeatUntilStep<S, R, Input, Output>
impl<S, R, Input, Output> RefUnwindSafe for RepeatUntilStep<S, R, Input, Output>
impl<S, R, Input, Output> Send for RepeatUntilStep<S, R, Input, Output>
impl<S, R, Input, Output> Sync for RepeatUntilStep<S, R, Input, Output>
impl<S, R, Input, Output> Unpin for RepeatUntilStep<S, R, Input, Output>
impl<S, R, Input, Output> UnwindSafe for RepeatUntilStep<S, R, Input, Output>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more