pub struct RetryingNode<S: State> { /* private fields */ }Expand description
Node wrapper that adds retry behavior
Wraps an inner node and retries execution according to the provided retry policy when the inner node fails.
Implementations§
Source§impl<S: State> RetryingNode<S>
impl<S: State> RetryingNode<S>
Trait Implementations§
Source§impl<S: State> Debug for RetryingNode<S>
impl<S: State> Debug for RetryingNode<S>
Auto Trait Implementations§
impl<S> !RefUnwindSafe for RetryingNode<S>
impl<S> !UnwindSafe for RetryingNode<S>
impl<S> Freeze for RetryingNode<S>
impl<S> Send for RetryingNode<S>
impl<S> Sync for RetryingNode<S>
impl<S> Unpin for RetryingNode<S>
impl<S> UnsafeUnpin for RetryingNode<S>
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