pub struct RetryUntilFail<T> {
pub child: Box<dyn Node<T>>,
/* private fields */
}Expand description
Repeats until the child fails.
Fields§
§child: Box<dyn Node<T>>Trait Implementations§
Source§impl<T: Debug> Debug for RetryUntilFail<T>
impl<T: Debug> Debug for RetryUntilFail<T>
Auto Trait Implementations§
impl<T> Freeze for RetryUntilFail<T>
impl<T> !RefUnwindSafe for RetryUntilFail<T>
impl<T> Send for RetryUntilFail<T>
impl<T> Sync for RetryUntilFail<T>
impl<T> Unpin for RetryUntilFail<T>
impl<T> UnsafeUnpin for RetryUntilFail<T>
impl<T> !UnwindSafe for RetryUntilFail<T>
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